1 [% nav_arr = [ { name=> suite, url=>make_url('/','','suite',suite) } ];
2 nav_arr.push( { name => 'Source' } ) IF source;
3 nav_arr.push( { name => 'Index' } );
4 PROCESS 'html/head.tmpl'
5 title_tag = "List of sections in \"$suite\""
9 [% PROCESS 'html/menu.inc' %]
10 [% FOREACH s IN suites %]
11 [% '<div id="pothers">' IF loop.first %]
13 [% PROCESS menuitem name=s url='' %]
15 [% PROCESS menuitem name=s url=make_url('/','','suite',s,'source',source) %]
17 [%- '</div>' IF loop.last -%]
20 <h1>List of sections in "[% suite %]"</h1>
22 [% FOREACH subsections %]
23 [% '<div id="lefthalfcol"><dl>' IF loop.first %]
25 <dt><a href="[% id %]/">[% name %]</a></dt>
28 [%- loop_half = loop.size / 2 -%]
29 [%- IF ( loop.count <= loop_half ) && ( loop.count >= ( loop_half - 1 ) ) -%]
31 </div> <!-- end lefthalfcol -->
32 <div id="righthalfcol">
35 [% '</dl></div>' IF loop.last %]
38 <p class="psmallcenter">
39 <a href="allpackages" title="List of all [% "source " IF source %]packages">All [% "source " IF source %]packages</a><br>
40 (<a href="allpackages?format=txt.gz">compact compressed textlist</a>)
43 [%- PROCESS 'html/foot.tmpl' -%]