blob: 001e11ecdc7db79235b4439d0f1fd91ca7754e88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Authors{% endblock %}
{% block pagetitle %}Authors on {{ SITENAME }}{% endblock %}
{% block content %}
<ul>
{%- for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}
|