{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ BLOGNAME }}</h2>
<dl>
{% for date, articles in dates %}
{% for article in articles %}
<dt>{{ date }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}