aboutsummaryrefslogblamecommitdiffstats
path: root/medio/templates/period_archives.html
blob: e9e6848c2457ce29e4b572e26947c310067c9d3e (plain) (tree)



















                                                                                                                   
{% 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 %}