From f1b37410dd85f42d663f1eb591ac9bde567eeb47 Mon Sep 17 00:00:00 2001 From: Vasudev Kamath Date: Sun, 17 Apr 2016 13:15:23 +0530 Subject: Template copied from pelican's simple theme. --- templates/archives.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 templates/archives.html (limited to 'templates/archives.html') diff --git a/templates/archives.html b/templates/archives.html new file mode 100644 index 0000000..050f268 --- /dev/null +++ b/templates/archives.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block content %} +

Archives for {{ SITENAME }}

+ +
+{% for article in dates %} +
{{ article.locale_date }}
+
{{ article.title }}
+{% endfor %} +
+{% endblock %} -- cgit v1.2.3