2010-08-18 15:10:43 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
2024-05-31 07:34:01 -05:00
|
|
|
<section id="content" class="body">
|
|
|
|
|
<h1>Archives for {{ SITENAME }}</h1>
|
2010-08-18 15:10:43 +02:00
|
|
|
|
2024-05-31 07:34:01 -05:00
|
|
|
<dl>
|
|
|
|
|
{% for article in dates %}
|
|
|
|
|
<dt>{{ article.locale_date }}</dt>
|
|
|
|
|
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</dl>
|
|
|
|
|
</section>
|
2010-08-18 15:10:43 +02:00
|
|
|
{% endblock %}
|