aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/authors.html
blob: 4914904fa861e339d727e4581ea2f368b404a9b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% 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 %}