summaryrefslogtreecommitdiff
path: root/views/tags.tpl
blob: 192dc6c6d9ebff5d6862be73c7cbb559bb533e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
%#generate HTML table of all tags
<table border="1">
  <tr>
    <th>Tag name</th>
  </tr>
%for tag in tags:
  <tr>
    <td><a href="{{tag}}/">{{tag}}</a></td>
  </tr>
%end
</table>