summaryrefslogtreecommitdiffstats
path: root/templates/_tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/_tags.html')
-rw-r--r--templates/_tags.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/_tags.html b/templates/_tags.html
new file mode 100644
index 0000000..aa22e88
--- /dev/null
+++ b/templates/_tags.html
@@ -0,0 +1,8 @@
+ <h2>Tags</h2>
+ <ul>
+ {% for tag in tags %}
+ <li><a href="{{url_for('list', tag=tag[0])}}">{{ tag[0] }}</a></li>
+ {% else %}
+ <li><strong>no tags yet</strong></li>
+ {% endfor %}
+ </ul>