aboutsummaryrefslogtreecommitdiffstats
path: root/franticworld/templates/archives.html
blob: 0e25a5d7f762bb15292199c54ca4dab46984a138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}
{% block content %}

<h1>Archives for {{ SITENAME }}</h1>

<dl>
{% for article in dates %}
	<dt>{{ article.date|strftime('%d %b,%Y') }}</dt>
	<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
</dl>

{% endblock %}