7
|
1 [%
|
|
2 document.layout = 'library';
|
|
3 compounds = resource.GetCompoundsLocation();
|
|
4 IF model.indexDocument;
|
8
|
5 args = {
|
|
6 compounds = compounds.toString(),
|
|
7 members = resource.GetMembersLocation().toString()
|
|
8 }
|
|
9 T = import('Benzin::Doxygen::DisplayTransform');
|
|
10 T.instance.DisplayCompound(model.indexDocument, args );
|
7
|
11 ELSE;
|
|
12 %]
|
|
13 <h1>$model.description</h1>
|
|
14 <ul>
|
|
15 [% FOREACH item IN model.GetPackages() %]
|
|
16 <li><a href="[% compounds.Child(item.doxId) %]">$item.name</a></li>
|
|
17 [% END %]
|
|
18 </ul>
|
|
19 [% END %] |