diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 19:42:53 +0000 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 19:42:53 +0000 |
commit | 92808823a34cabb29b85ae2550e83ef39fc132a6 (patch) | |
tree | b8f3b21125e8279e0b279554ba4d5e0e0fc0a3c2 /waterspill/templates/archives.html | |
parent | 9896db2d95ec58883d1adc41a2a29408260a4ed0 (diff) | |
download | pelican-themes-92808823a34cabb29b85ae2550e83ef39fc132a6.tar.gz |
Add the waterspill theme, thanks to Freeculture.
Diffstat (limited to 'waterspill/templates/archives.html')
-rw-r--r-- | waterspill/templates/archives.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/waterspill/templates/archives.html b/waterspill/templates/archives.html new file mode 100644 index 0000000..bd23243 --- /dev/null +++ b/waterspill/templates/archives.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} +{% block title %}Archives de {{ SITENAME }}{% endblock %} +{% block content %} + +<div class="blogItem"> +<dl> + <h2>Archives de {{ SITENAME }}</h2> + {% for article in dates %} + <dt>{{ article.date.strftime('%a %d %B %Y') }}</dt> + <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd> + + {% endfor %} + </dl> + + +</div> + + + +{% endblock %} + + + + + |