aboutsummaryrefslogtreecommitdiffstats
path: root/photowall/templates/authors.html
blob: e61a332f1e6dfe570b18658b37019141906818ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}

{% block title %}{{ SITENAME }} - Authors{% endblock %}

{% block content %}

<section id="content" class="body">
    <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>
</section>

{% endblock %}