summaryrefslogtreecommitdiff
path: root/templates/blog_archive.html
blob: df6b810bca0d384ff038bdce9c350edb089bc279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "page.html" %}

{% set is_blog = True %}

{% block contents %}
{% for year, post_set in posts %}
<h2>{{ year }}</h2>
<ul>
    {% for post in post_set %}
    <li><a href="{{ post.filename|replace('.rst', '.html') }}">{{ post.title }}</a></li>
    {% endfor %}
</ul>
{% endfor %}
{% endblock %}