aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/archives.html
blob: e50272b7a5369d103d99ff671965da9294dbdbd1 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block pagetitle %}Archives for {{ SITENAME }}{% endblock %}
{% block content %}
<dl>
{% for article in dates %}
    <dt>{{ article.locale_date }}</dt>
    <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}