1 [% nav_arr = [ { name=> suite, url=>make_url('/','','suite',suite) } ];
2 nav_arr.push( { name => g('Source') } ) IF source;
3 nav_arr.push( { name => g('Index') } );
4 PROCESS 'html/head.tmpl'
5 title_tag = g('List of sections in "%s"', suite)
9 [% PROCESS 'html/util.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>[% g('List of sections in "%s"', 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 [% link_title = source ? g('List of all source packages')
39 : g('List of all packages');
40 link_text = source ? g('All source packages')
43 <p class="psmallcenter">
44 <a href="allpackages" title="[% link_title %]">[% link_text %]</a><br>
45 (<a href="allpackages?format=txt.gz">[% g('compact compressed textlist') %]</a>)
48 [%- PROCESS 'html/foot.tmpl' page_name= source ? "source/$suite/" : "$suite/" -%]