diff options
| author | Daniel Hader <[email protected]> | 2026-08-29 13:06:16 -0500 |
|---|---|---|
| committer | Daniel Hader <[email protected]> | 2026-08-29 13:06:16 -0500 |
| commit | 5fa81500dcc07a853a01b0b0d813069467995807 (patch) | |
| tree | 4edb04d0a99ee88492f99eb7a09d8982b56280f9 /themes/simple/templates/period_archives.html | |
work in progress css
Diffstat (limited to 'themes/simple/templates/period_archives.html')
| -rw-r--r-- | themes/simple/templates/period_archives.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/simple/templates/period_archives.html b/themes/simple/templates/period_archives.html new file mode 100644 index 0000000..181f493 --- /dev/null +++ b/themes/simple/templates/period_archives.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block title %}{{ SITENAME|striptags }} - {{ period | reverse | join(' ') }} archives{% endblock %} + +{% block content %} + <h2>Archives for {{ period | reverse | join(' ') }}</h2> + + <dl> + {% for article in dates %} + <dt>{{ article.locale_date }}</dt> + <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd> + {% endfor %} + </dl> +{% endblock %} |
