aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill-en/templates/archives.html
diff options
context:
space:
mode:
Diffstat (limited to 'waterspill-en/templates/archives.html')
-rw-r--r--waterspill-en/templates/archives.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/waterspill-en/templates/archives.html b/waterspill-en/templates/archives.html
new file mode 100644
index 0000000..c485aeb
--- /dev/null
+++ b/waterspill-en/templates/archives.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+{% block title %}Archives of {{ SITENAME }}{% endblock %}
+{% block content %}
+
+<div class="blogItem">
+<dl>
+ <h2>Archives of {{ SITENAME }}</h2>
+ {% for article in dates %}
+ <dt>{{ article.locale_date }}</dt>
+ <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
+
+ {% endfor %}
+ </dl>
+
+
+</div>
+
+
+
+{% endblock %}
+
+
+
+
+