blob: 9f7da5654834ed7d18aca8c5d61226f980139656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block pagetitle %}Archives for {{ period | reverse | join(' ') }}{% 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 %}
|