diff options
Diffstat (limited to 'themes/nojs/templates/authors.html')
| -rw-r--r-- | themes/nojs/templates/authors.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/nojs/templates/authors.html b/themes/nojs/templates/authors.html new file mode 100644 index 0000000..9aee5db --- /dev/null +++ b/themes/nojs/templates/authors.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block title %}{{ SITENAME }} - Authors{% endblock %} + +{% block content %} + <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> +{% endblock %} |
