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

{% block title %}{{ SITENAME|striptags }} - {{ period | reverse | join(' ') }} archives{% endblock %}

{% block content %}
    <h2>Archives for {{ period | reverse | join(' ') }}</h2>

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