archives.html 268 B

123456789101112
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>Archives for {{ SITENAME }}</h1>
  4. <dl>
  5. {% for article in dates %}
  6. <dt>{{ article.locale_date }}</dt>
  7. <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
  8. {% endfor %}
  9. </dl>
  10. {% endblock %}