diff options
Diffstat (limited to 'bricabrac/templates/archives.html')
-rw-r--r-- | bricabrac/templates/archives.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bricabrac/templates/archives.html b/bricabrac/templates/archives.html new file mode 100644 index 0000000..2f424f8 --- /dev/null +++ b/bricabrac/templates/archives.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} +{% block content %} +<header> +<h1> +<a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> : +<a href="{{ SITEURL }}/archives.html" id="page-title">archives</a></h1> +</header> +<section id="content" class="body"> +<dl> +{% for article in dates %} +<dt>{{ article.locale_date }}</dt> +<dd><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></dd> +{% endfor %} +</dl> +</section> +{% endblock %} |