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