archives.html 315 B

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