From d404e2fe5b8c57c473c6250b8decbf5ac5b45e64 Mon Sep 17 00:00:00 2001 From: wilsonfreitas Date: Wed, 13 Aug 2014 08:49:52 -0300 Subject: Added new theme aboutwilson --- aboutwilson/templates/archives.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 aboutwilson/templates/archives.html (limited to 'aboutwilson/templates/archives.html') diff --git a/aboutwilson/templates/archives.html b/aboutwilson/templates/archives.html new file mode 100644 index 0000000..2078a6c --- /dev/null +++ b/aboutwilson/templates/archives.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} +{% block description %}The archives page, find old stuff organized by date.{% endblock %} +{% block title %}Archive — {{ SITENAME }}{% endblock %} +{% block content %} + +

Archives

+ + + + {% for article in dates %} + + + + + {% endfor %} + +
{{ article.date.strftime("%d %b %Y") }}{{ article.title }}
+ + +{% endblock %} -- cgit