diff options
| author | Uwe Kleine-König <uwe@kleine-koenig.org> | 2016-10-23 22:38:55 +0200 |
|---|---|---|
| committer | Uwe Kleine-König <uwe@kleine-koenig.org> | 2016-10-23 22:38:55 +0200 |
| commit | 432285bda8a96f0e5bdff52d4d726ad2397b3ac8 (patch) | |
| tree | b86acea2dc86e2e4fc9c3e09f6965a8c6260a5f3 /theme/templates/archives.html | |
initial approach for new flug website
Diffstat (limited to 'theme/templates/archives.html')
| -rw-r--r-- | theme/templates/archives.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/theme/templates/archives.html b/theme/templates/archives.html new file mode 100644 index 0000000..f678494 --- /dev/null +++ b/theme/templates/archives.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% block content %} +<section id="content" class="body"> +<h1>Archives for {{ SITENAME }}</h1> + +<dl> +{% for article in dates %} + <dt>{{ article.locale_date }}</dt> + <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd> +{% endfor %} +</dl> +</section> +{% endblock %} |
