diff options
Diffstat (limited to 'franticworld/templates/archives.html')
-rw-r--r-- | franticworld/templates/archives.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/franticworld/templates/archives.html b/franticworld/templates/archives.html new file mode 100644 index 0000000..0e25a5d --- /dev/null +++ b/franticworld/templates/archives.html @@ -0,0 +1,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 %}
|