aboutsummaryrefslogtreecommitdiffstats
path: root/subtle/templates/archives.html
diff options
context:
space:
mode:
authorasselinpaul <pa.asselin@gmail.com>2012-06-12 18:23:40 +0200
committerasselinpaul <pa.asselin@gmail.com>2012-06-12 18:23:40 +0200
commite4c3d6fc542026ba68fa6f7e9cf4d84ab6e1801b (patch)
treeca743fea2c153afadc5266c15d9657062811583f /subtle/templates/archives.html
parentfdbaa6805064db85f6e71852d0c00e245d7ad432 (diff)
downloadpelican-themes-e4c3d6fc542026ba68fa6f7e9cf4d84ab6e1801b.tar.gz
added subtle
Diffstat (limited to 'subtle/templates/archives.html')
-rwxr-xr-xsubtle/templates/archives.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/subtle/templates/archives.html b/subtle/templates/archives.html
new file mode 100755
index 0000000..f678494
--- /dev/null
+++ b/subtle/templates/archives.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block content %}
+<section id="content" class="body">
+<h1>Archives for {{ SITENAME }}</h1>
+
+<dl>
+{% for article in dates %}
+ <dt>{{ article.locale_date }}</dt>
+ <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+{% endfor %}
+</dl>
+</section>
+{% endblock %}