{% extends "base.html" %} {% block title %}{{ SITENAME }} - Archives{% endblock %} {% block content %}

Archives

{% for article in dates %} {% if loop.first or loop.previtem.date.month != article.date.month %}

{{ article.date.strftime('%B %Y') }}

{% endif %}
{{ article.date.strftime('%d') }}   {{ article.title }}
{% endfor %}
{% endblock %}