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