aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill/templates/tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'waterspill/templates/tags.html')
-rw-r--r--waterspill/templates/tags.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/waterspill/templates/tags.html b/waterspill/templates/tags.html
new file mode 100644
index 0000000..1fd478c
--- /dev/null
+++ b/waterspill/templates/tags.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="blogItem">
+<ul>
+{% for tag, articles in tags %}
+ <li>{{ tag }}</li>
+{% endfor %}
+</ul>
+</div>
+{% endblock %}