diff options
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 %} + + + + + |