summaryrefslogtreecommitdiffstats
path: root/templates/blog.html
blob: 87a9cd9a49a09dbce8d3e7467642de098e2db41d (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "default.html" %}
{% block head %}
<link rel="alternate" type="application/atom+xml" href="{{ site.baseurl }}/blog.atom.xml" />
{% endblock %}
{% 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 %}