9 lines
205 B
Text
9 lines
205 B
Text
{% extends "base.mu" %}
|
|
{% block content %}
|
|
>Authors on {{ SITENAME }}
|
|
|
|
{%- for author, articles in authors|sort %}
|
|
+ `[{{ author }}`:/{{ author.url }}] ({{ articles|count }})
|
|
|
|
{% endfor %}
|
|
{% endblock %}
|