summaryrefslogtreecommitdiff
path: root/themes/simple/templates/archives.html
blob: a61bf3c6192c15c203348eb7cbc9e85ec7e4abc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block title %}{{ SITENAME|striptags }} - Archives{% endblock %}

{% block content %}
    <h2>Archives for {{ SITENAME }}</h2>

    <dl>
        {% for article in dates %}
            <dt>{{ article.locale_date }}</dt>
            <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
        {% endfor %}
    </dl>
{% endblock %}