{% extends "base.html" %} {% block description %}The archives page, find old stuff organized by date.{% endblock %} {% block title %}Archive — {{ SITENAME }}{% endblock %} {% block content %}

Archives

{% for article in dates %} {% endfor %}
{{ article.date.strftime("%d %b %Y") }} {{ article.title }}
{% endblock %}