blob: 38ac8a8a18bcee41e5f2c9e820ed22d6d6ecf582 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Archives{% endblock %}
{% block content %}
<article>
<div class="article_text">
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
</div>
</article>
{% endblock %}