diff options
Diffstat (limited to 'notebook/templates/archives.html')
-rw-r--r-- | notebook/templates/archives.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/notebook/templates/archives.html b/notebook/templates/archives.html new file mode 100644 index 0000000..32e78a3 --- /dev/null +++ b/notebook/templates/archives.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block content %} +<h1>Archives</h1> + +<dl> +{% for article in dates %} + <dt>{{ article.locale_date }}</dt> + <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd> +{% endfor %} +</dl> +{% endblock %} |