2010-08-18 15:10:43 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
2010-11-20 18:47:40 +00:00
|
|
|
<section id="content" class="body">
|
2010-10-30 00:58:32 +01:00
|
|
|
<h1>Archives for {{ SITENAME }}</h1>
|
2010-08-18 15:10:43 +02:00
|
|
|
|
|
|
|
|
<dl>
|
2010-11-26 23:37:03 +00:00
|
|
|
{% for article in dates %}
|
2011-02-01 21:44:50 +00:00
|
|
|
<dt>{{ article.locale_date }}</dt>
|
2012-05-07 23:07:44 +02:00
|
|
|
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
|
2010-08-18 15:10:43 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
</dl>
|
2010-11-20 18:47:40 +00:00
|
|
|
</section>
|
2010-08-18 15:10:43 +02:00
|
|
|
{% endblock %}
|