blob: 0e25a5d7f762bb15292199c54ca4dab46984a138 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ SITENAME }}</h1>
<dl>
{% for article in dates %}
<dt>{{ article.date|strftime('%d %b,%Y') }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}
|