1 {% extends "base.html" %}
3 {% block title %}{{ SITENAME }} - Archives{% endblock %}
9 {% for article in dates %}
11 {% if loop.first or loop.previtem.date.month != article.date.month %}
12 <h4><strong>{{ article.date.strftime('%B %Y') }}</strong></h4>
15 <dd>{{ article.date.strftime('%d') }}   <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>