aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill-en/templates/archives.html
diff options
context:
space:
mode:
authorThe Dod <unclezzzen@gmail.com>2012-11-05 12:51:12 +0700
committerThe Dod <unclezzzen@gmail.com>2012-11-05 12:51:12 +0700
commitbd942f2d4f6df52e2aa4ff44d4050da0f260d76e (patch)
tree87722bedef5215b19de69abb7a85441be36ca227 /waterspill-en/templates/archives.html
parent662052faa4749d3fec2ff1149e853f71d5c2b434 (diff)
downloadpelican-themes-bd942f2d4f6df52e2aa4ff44d4050da0f260d76e.tar.gz
initial commit
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 %}
+
+
+
+
+