summaryrefslogtreecommitdiff
path: root/themes/simple/templates/authors.html
blob: 97a74572a9efc77b0e306cbccce597ddc336b0be (plain)
1
2
3
4
5
6
7
8
9
10
11
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 %}