aboutsummaryrefslogtreecommitdiffstats
path: root/medio/templates/period_archives.html
blob: e9e6848c2457ce29e4b572e26947c310067c9d3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% block content %}
<div class="page-container archive-container">

    <div class="entry-content">

        <h1>Archives for {{ period | reverse | join(' ') }}</h1>

        <ul>
        {% for article in dates %}
            <li>
                <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> &mdash; {{ article.locale_date }}
            </li>
        {% endfor %}
        </ul>

    </div>

</div>
{% endblock %}