diff options
Diffstat (limited to 'brownstone/templates/archives.html')
-rw-r--r-- | brownstone/templates/archives.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/brownstone/templates/archives.html b/brownstone/templates/archives.html new file mode 100644 index 0000000..5adaacb --- /dev/null +++ b/brownstone/templates/archives.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% block title %}Archives de {{ SITENAME }}{% endblock %} +{% block content %} + <div id="content"> + <div class="post"> + <dl> + <h2 class="title">Archives de {{ SITENAME }}</h2> + {% for article in dates %} + <dt>{{ article.locale_date }}</dt> + <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd> + <dd>Catégorie : <a href="{{ article.category }}">{{ article.category }}</a></dd> + {% endfor %} + </dl> + </div> + + <div style="clear: both;"> </div> + </div> + <!-- end #content --> +{% endblock %} |