diff options
Diffstat (limited to 'templates/tag.html')
-rw-r--r-- | templates/tag.html | 7 |
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 %} |