diff options
Diffstat (limited to 'notmyidea-cms-fr/templates/archives.html')
-rw-r--r-- | notmyidea-cms-fr/templates/archives.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/notmyidea-cms-fr/templates/archives.html b/notmyidea-cms-fr/templates/archives.html new file mode 100644 index 0000000..02379fd --- /dev/null +++ b/notmyidea-cms-fr/templates/archives.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% block content %} +<section id="content" class="body"> +<h1>Archives pour «{{ SITENAME }}»</h1> + +<dl> +{% for article in dates %} + <dt>{{ article.date.strftime('%a %d %B %Y') }}</dt> + <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd> +{% endfor %} +</dl> +</section> +{% endblock %} |