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/authors.html | |
initial approach for new flug website
Diffstat (limited to 'theme/templates/authors.html')
| -rw-r--r-- | theme/templates/authors.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/theme/templates/authors.html b/theme/templates/authors.html new file mode 100644 index 0000000..e61a332 --- /dev/null +++ b/theme/templates/authors.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% block title %}{{ SITENAME }} - Authors{% endblock %} + +{% block content %} + +<section id="content" class="body"> + <h1>Authors on {{ SITENAME }}</h1> + <ul> + {% for author, articles in authors|sort %} + <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li> + {% endfor %} + </ul> +</section> + +{% endblock %} |
