summaryrefslogtreecommitdiffstats
path: root/templates/tags
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags')
-rw-r--r--templates/tags/list.html5
-rw-r--r--templates/tags/single.html1
2 files changed, 6 insertions, 0 deletions
diff --git a/templates/tags/list.html b/templates/tags/list.html
new file mode 100644
index 0000000..e9eac41
--- /dev/null
+++ b/templates/tags/list.html
@@ -0,0 +1,5 @@
+<ul class="taglist">
+ {% for t in terms %}
+ <li class="tag">{{ t.name }}</li>
+ {% endfor %}
+</ul>
diff --git a/templates/tags/single.html b/templates/tags/single.html
new file mode 100644
index 0000000..1e00fa6
--- /dev/null
+++ b/templates/tags/single.html
@@ -0,0 +1 @@
+<span class="tag">{{ term.name }}</span>