summaryrefslogtreecommitdiff
path: root/themes/nojs/templates/period_archives.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/nojs/templates/period_archives.html')
-rw-r--r--themes/nojs/templates/period_archives.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/nojs/templates/period_archives.html b/themes/nojs/templates/period_archives.html
new file mode 100644
index 0000000..e1ddf62
--- /dev/null
+++ b/themes/nojs/templates/period_archives.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - {{ period | reverse | join(' ') }} archives{% endblock %}
+
+{% block content %}
+<h1>Archives for {{ period | reverse | join(' ') }}</h1>
+
+<dl>
+{% for article in dates %}
+ <dt>{{ article.locale_date }}</dt>
+ <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+{% endfor %}
+</dl>
+{% endblock %}