blob: 2078a6c1b4feee910c17ea4f589db66146b26f52 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block description %}The archives page, find old stuff organized by date.{% endblock %}
{% block title %}Archive — {{ SITENAME }}{% endblock %}
{% block content %}
<h1>Archives</h1>
<table class="table">
<tbody>
{% for article in dates %}
<tr>
<td>{{ article.date.strftime("%d %b %Y") }}</td>
<td><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
|