aboutsummaryrefslogtreecommitdiffstats
path: root/backdrop/templates/period_archives.html
diff options
context:
space:
mode:
Diffstat (limited to 'backdrop/templates/period_archives.html')
-rw-r--r--backdrop/templates/period_archives.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/backdrop/templates/period_archives.html b/backdrop/templates/period_archives.html
new file mode 100644
index 0000000..c2fdf06
--- /dev/null
+++ b/backdrop/templates/period_archives.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+{% block title %}Archives{% endblock title %}
+
+{% block content %}
+<div class="row">
+ <div class="small-12 columns">
+ <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>
+ </div>
+</div>
+{% endblock %}