blob: a23994b8d70ecd6dc05881762b120ee0fc81d9d7 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Archives{% endblock %}
{% block content %}
{% set custom_header = "Archives" %}
{% include "header.html" %}
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}