]> git.deb.at Git - deb/packages.git/blob - templates/html/tag_index.tmpl
Use the debtags vocabulary to be able to show prettier tag names
[deb/packages.git] / templates / html / tag_index.tmpl
1 [% PROCESS 'html/head.tmpl' 
2         title_tag = "Overview of available Debian Package Tags"
3         keywords = debtags
4         navigation = [  { name=>'About', url=>"/about/" },
5                         { name=>'Debtags' } ]
6 %]
7 <h1>Overview of available Debian Package Tags</h1>
8
9 [% FOREACH facet IN facets %]
10         <h2 id="[% string2id(facet) %]">Facet: [% facet %]</h2>
11         <p class="pshortdesc">[% vocabulary.$facet.html_description.0 %]</p>
12         <p>[% vocabulary.$facet.html_description.1 %]
13
14         [% FOREACH tag IN tags_by_facet.$facet %]
15                 [% '<dl class="ptaglist">' IF loop.first %]
16                 <dt id="[% string2id(tag) %]">[% tag %]</dt>
17                 <dd><p class="pshortdesc">[% vocabulary.$tag.html_description.0 %]
18                     <p>[% vocabulary.$tag.html_description.1 %]
19                 </dd>
20                 [% '</dl>' IF loop.last %]
21         [% END %]
22
23 [% END %]