2013-07-25 23:25:05 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
2023-10-28 14:24:16 +02:00
|
|
|
{% block title %}{{ SITENAME|striptags }} - Authors{% endblock %}
|
2013-07-25 23:25:05 +02:00
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<section id="content" class="body">
|
|
|
|
|
<h1>Authors on {{ SITENAME }}</h1>
|
2014-02-12 11:47:22 +01:00
|
|
|
<ul>
|
|
|
|
|
{% for author, articles in authors|sort %}
|
2013-07-25 23:25:05 +02:00
|
|
|
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
|
|
|
|
|
{% endfor %}
|
2014-02-12 11:47:22 +01:00
|
|
|
</ul>
|
2013-07-25 23:25:05 +02:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|