blob: 8115d9e983b18f2a6e52e9be81695ec3c39dbe6f [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "base.html" %}
2{% block title %}{{ SITENAME }} - Archives{% endblock %}
3{% block content %}
Giulio Fidentea5278c12013-03-23 00:33:24 +01004<article>
5 <div id="article_text">
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 </div>
13</article>
Giulio Fidente44ccac72013-03-21 18:51:03 +010014{% endblock %}