summaryrefslogtreecommitdiff
path: root/root/tags
blob: 244ae323037bab0ddd691f411b707e95a8765340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
 <head>
  <title>Tags</title>
  <link rel="stylesheet" href="[% href.stylesheet() %]" type="text/css" />
 </head>
 <body>
  <div id="all-tags">
   <ol>
    [% FOR tag IN tags %]
    <li>
     <span class="tag name">
      <a href="[% href.to_tag(tag) %]" target="_self">[% tag.name %]</a>
     </span>
     <span class="tag count">[% tag.how_many() %]</span>
    </li>
    [% END %]
   </ol>
  </div>
 </body>
</html>