summaryrefslogtreecommitdiffstats
path: root/templates/tag.html
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2018-07-18 23:46:06 +0100
committerTomasz Kramkowski <tk@the-tk.com>2018-07-18 23:55:42 +0100
commitc34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23 (patch)
treea50e1f923f5101846e440fba4b076b14d8ac6b4b /templates/tag.html
downloadthe-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.tar.gz
the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.tar.xz
the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.zip
init commit
Diffstat (limited to 'templates/tag.html')
-rw-r--r--templates/tag.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/tag.html b/templates/tag.html
new file mode 100644
index 0000000..47c5fa0
--- /dev/null
+++ b/templates/tag.html
@@ -0,0 +1,7 @@
+{% extends "default.html" %}
+{% block content %}
+<h1>Posts tagged - {{ page.tag }}</h1>
+<ul class="postlist">{% for post in page.posts %}
+ <li><time>{{ post.date|datefmt }}</time> | <a href="{{ '/' + post.location }}">{{ post.title }}</a>{% endfor %}
+</ul>
+{% endblock %}