summaryrefslogtreecommitdiff
path: root/theme/cccevents/templates/period_archives.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/cccevents/templates/period_archives.html')
-rw-r--r--theme/cccevents/templates/period_archives.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/theme/cccevents/templates/period_archives.html b/theme/cccevents/templates/period_archives.html
new file mode 100644
index 0000000..e8745f3
--- /dev/null
+++ b/theme/cccevents/templates/period_archives.html
@@ -0,0 +1,14 @@
1{% extends "base.html" %}
2
3{% block content_title %}
4 <h1>Archives for {{ period | reverse | join(' ') }}</h1>
5{% endblock %}
6
7{% block content %}
8 <dl>
9 {% for article in dates %}
10 <dt>{{ article.locale_date }}</dt>
11 <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
12 {% endfor %}
13 </dl>
14{% endblock %}