diff options
author | Hans-Peter Oeri <hp@oeri.ch> | 2018-10-25 13:27:51 +0200 |
---|---|---|
committer | Hans-Peter Oeri <hp@oeri.ch> | 2018-10-25 13:27:51 +0200 |
commit | c8cfe63aac73a92ae02354a5306ca5480808daff (patch) | |
tree | 7bf3bcf334051dbf2f8d96981b8d199470064eac /theme/cccevents/templates/archives.html | |
parent | 17a536b7ffba296f1fc71337ce8aa2910f5ed3fc (diff) |
re-do site in schiedsstelle layout
Diffstat (limited to 'theme/cccevents/templates/archives.html')
-rw-r--r-- | theme/cccevents/templates/archives.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/theme/cccevents/templates/archives.html b/theme/cccevents/templates/archives.html new file mode 100644 index 0000000..3751372 --- /dev/null +++ b/theme/cccevents/templates/archives.html | |||
@@ -0,0 +1,16 @@ | |||
1 | {% extends "base.html" %} | ||
2 | |||
3 | {% block title %}{{ SITENAME }} - Archives{%endblock%} | ||
4 | |||
5 | {% block content_title %} | ||
6 | <h1>Archives for {{ SITENAME }}</h1> | ||
7 | {% endblock %} | ||
8 | |||
9 | {% block content %} | ||
10 | <dl> | ||
11 | {% for article in dates %} | ||
12 | <dt>{{ article.locale_date }}</dt> | ||
13 | <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd> | ||
14 | {% endfor %} | ||
15 | </dl> | ||
16 | {% endblock %} | ||