first version of the new website
[markerbeacon.git] / themes / markerbeacon / templates / archives.html
1 {% extends "base.html" %}
2 {% block content %}
3 <section id="content" class="body">
4 <h1>Archives for {{ SITENAME }}</h1>
5
6 <dl>
7 {% for article in dates %}
8     <dt>{{ article.locale_date }}</dt>
9     <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
10 {% endfor %}
11 </dl>
12 </section>
13 {% endblock %}