archives.html 330 B

1234567891011121314
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <section >
  4. <h1>{% block content_title %}Archives for {{ SITENAME }}{% endblock %}</h1>
  5. <dl>
  6. {% for article in dates %}
  7. <dt>{{ article.date.strftime('%Y-%m-%d') }}</dt>
  8. <dd><a href="/{{ article.url }}">{{ article.title }}</a></dd>
  9. {% endfor %}
  10. </dl>
  11. </section>
  12. {% endblock %}