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