summaryrefslogtreecommitdiff
path: root/views/tags.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'views/tags.tpl')
-rw-r--r--views/tags.tpl11
1 files changed, 11 insertions, 0 deletions
diff --git a/views/tags.tpl b/views/tags.tpl
new file mode 100644
index 0000000..192dc6c
--- /dev/null
+++ b/views/tags.tpl
@@ -0,0 +1,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>