summaryrefslogtreecommitdiffstats
path: root/templates/tag.html
blob: 47c5fa0281e670c8a0ac2c58a3c6d5838fde8508 (plain)
1
2
3
4
5
6
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 %}