diff options
| author | Hans-Peter Oeri <hp@oeri.ch> | 2018-10-25 11:32:42 +0000 |
|---|---|---|
| committer | Hans-Peter Oeri <hp@oeri.ch> | 2018-10-25 11:32:42 +0000 |
| commit | ff89112e87a34156fd0d4a10a10fd43b6f525cbd (patch) | |
| tree | 7bf3bcf334051dbf2f8d96981b8d199470064eac /theme/cccevents/templates/period_archives.html | |
| parent | 17a536b7ffba296f1fc71337ce8aa2910f5ed3fc (diff) | |
| parent | c8cfe63aac73a92ae02354a5306ca5480808daff (diff) | |
Merge branch 'redohp' into 'master'
re-do site in schiedsstelle layout
See merge request KampfCaspar/help.ccc.de!1
Diffstat (limited to 'theme/cccevents/templates/period_archives.html')
| -rw-r--r-- | theme/cccevents/templates/period_archives.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/theme/cccevents/templates/period_archives.html b/theme/cccevents/templates/period_archives.html new file mode 100644 index 0000000..e8745f3 --- /dev/null +++ b/theme/cccevents/templates/period_archives.html | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | {% extends "base.html" %} | ||
| 2 | |||
| 3 | {% block content_title %} | ||
| 4 | <h1>Archives for {{ period | reverse | join(' ') }}</h1> | ||
| 5 | {% endblock %} | ||
| 6 | |||
| 7 | {% block content %} | ||
| 8 | <dl> | ||
| 9 | {% for article in dates %} | ||
| 10 | <dt>{{ article.locale_date }}</dt> | ||
| 11 | <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd> | ||
| 12 | {% endfor %} | ||
| 13 | </dl> | ||
| 14 | {% endblock %} | ||
