blob: a23994b8d70ecd6dc05881762b120ee0fc81d9d7 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "base.html" %}
2{% block title %}{{ SITENAME }} - Archives{% endblock %}
3{% block content %}
4{% set custom_header = "Archives" %}
5{% include "header.html" %}
6<dl>
7{% for article in dates %}
8 <dt>{{ article.locale_date }}</dt>
9 <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
10{% endfor %}
11</dl>
12{% endblock %}