diff options
Diffstat (limited to 'theme/templates/authors.html')
-rw-r--r-- | theme/templates/authors.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/theme/templates/authors.html b/theme/templates/authors.html new file mode 100644 index 0000000..001e11e --- /dev/null +++ b/theme/templates/authors.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block title %}{{ SITENAME }} - Authors{% endblock %} +{% block pagetitle %}Authors on {{ SITENAME }}{% endblock %} + +{% block content %} + <ul> + {%- for author, articles in authors|sort %} + <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li> + {% endfor %} + </ul> +{% endblock %} |