aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tags/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags/single.html')
-rw-r--r--templates/tags/single.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/tags/single.html b/templates/tags/single.html
new file mode 100644
index 0000000..52b965e
--- /dev/null
+++ b/templates/tags/single.html
@@ -0,0 +1,16 @@
+{% extends "index.html" %}
+
+{% block content %}
+ <h1>Tag: #{{ term.name }}</h1>
+ <ul>
+ {% for page in term.pages %}
+ <li>
+ <a href="{{ page.permalink }}">{{ page.title }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+{% endblock content %}
+
+<!--
+vim:sw=2
+-->