aboutsummaryrefslogblamecommitdiffstats
path: root/Peli-Kiera/templates/archives.html
blob: a7374d7b606279082bb8f1c4fd52019a52be79e1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                         
{% extends "base.html" %}

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

{% block content %}
    <main>
        <section id="list">
            <h2>Archives for {{ SITENAME }}</h2>
            <ul>
                {% for article in dates %}
                    <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
                        <time>{{ article.date|strftime('%b %Y') }}</time>
                    </li>
                {% endfor %}
            </ul>
        </section>
    </main>
{% endblock %}