summaryrefslogtreecommitdiff
path: root/theme/templates/authors.html
diff options
context:
space:
mode:
authorUwe Kleine-König <uwe@kleine-koenig.org>2016-10-23 22:38:55 +0200
committerUwe Kleine-König <uwe@kleine-koenig.org>2016-10-23 22:38:55 +0200
commit432285bda8a96f0e5bdff52d4d726ad2397b3ac8 (patch)
treeb86acea2dc86e2e4fc9c3e09f6965a8c6260a5f3 /theme/templates/authors.html
initial approach for new flug website
Diffstat (limited to 'theme/templates/authors.html')
-rw-r--r--theme/templates/authors.html16
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 %}