summaryrefslogtreecommitdiffstats
path: root/templates/blog.html
blob: 658f69dc14962bb6d6547eed799783e45e2f502c (plain)
1
2
3
4
5
6
7
{% extends "default.html" %}
{% block content %}
<h1>Posts</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 %}