aboutsummaryrefslogtreecommitdiffstats
path: root/nmnlist/templates/archives.html
diff options
context:
space:
mode:
authorStéphane Caron <stephane.caron@ens.fr>2013-03-20 12:04:11 +0100
committerStéphane Caron <stephane.caron@ens.fr>2013-03-20 12:04:11 +0100
commitda810104cd033c1dcc25d67f8f09985a415b43b9 (patch)
tree3ab6f758a1e022e04ebd82bf09691648ecb14107 /nmnlist/templates/archives.html
parent53d6c4254aa2b4781b850419d63a40527c307d71 (diff)
downloadpelican-themes-da810104cd033c1dcc25d67f8f09985a415b43b9.tar.gz
theme variant from mnmlist
Diffstat (limited to 'nmnlist/templates/archives.html')
-rw-r--r--nmnlist/templates/archives.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/nmnlist/templates/archives.html b/nmnlist/templates/archives.html
new file mode 100644
index 0000000..5ba2c81
--- /dev/null
+++ b/nmnlist/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='{{ article.url }}'>{{ article.title }}</a></dd>
+{% endfor %}
+</dl>
+</section>
+{% endblock %}