2010-08-17 20:28:51 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
2010-10-30 00:58:32 +01:00
|
|
|
<h1>Archives for {{ SITENAME }}</h2>
|
2010-08-17 20:28:51 +02:00
|
|
|
|
|
|
|
|
<dl>
|
2010-12-10 20:28:45 +01:00
|
|
|
{% for article in dates %}
|
2011-02-01 21:44:50 +00:00
|
|
|
<dt>{{ article.locale_date }}</dt>
|
2010-12-10 20:28:45 +01:00
|
|
|
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
|
2010-08-17 20:28:51 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
</dl>
|
|
|
|
|
{% endblock %}
|