summaryrefslogtreecommitdiff
path: root/templates/tags/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags/single.html')
-rw-r--r--templates/tags/single.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/tags/single.html b/templates/tags/single.html
new file mode 100644
index 0000000..a08695c
--- /dev/null
+++ b/templates/tags/single.html
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+
+{% block title %}
+{{ term.name }} - {{ config.title }}
+{% endblock %}
+
+{% block content %}
+
+<div class="article-header">
+ <h1>{{ term.name }}</h1>
+</div>
+<div class="typography">
+ <ul>
+ {% for page in term.pages %}
+ <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a> - {{ page.date | date(format="%B %-d, %Y") }}</li>
+ {% endfor %}
+ </ul>
+</div>
+
+{% endblock %}