summaryrefslogtreecommitdiffstats
path: root/theme/templates/archives.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/archives.html')
-rw-r--r--theme/templates/archives.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/theme/templates/archives.html b/theme/templates/archives.html
new file mode 100644
index 0000000..e50272b
--- /dev/null
+++ b/theme/templates/archives.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block pagetitle %}Archives for {{ SITENAME }}{% endblock %}
+{% block content %}
+<dl>
+{% for article in dates %}
+ <dt>{{ article.locale_date }}</dt>
+ <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+{% endfor %}
+</dl>
+{% endblock %}