flex/templates/authors.html
2023-04-01 00:32:10 +02:00

18 lines
424 B
HTML

{% extends "base.html" %}
{% block title %} – {{ _('Authors') }}{% endblock %}
{% block content %}
<article>
<header>
<h1 id="authors">{{ _('Authors') }}</h1>
</header>
<div>
<ul class="list">
{% for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}