aboutsummaryrefslogtreecommitdiffstats
path: root/built-texts/templates/archives.html
blob: 6b627ec27767e764b5c702990a8ba8bfe7f25402 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% block title %}{{ SITENAME }} [archive]{% endblock %}
{% block content %}

<h2>Archives</h2>

<table class="table table-striped">
    <tbody>
    {% for article in dates %}
        <tr>
        <td>{{ article.date.strftime("%d %b %Y") }}</td>
        <td><a href='{{ article.url }}'>{{ article.title }}</a></td>
        </tr>
    {% endfor %}
    </tbody>
</table>

{% endblock %}