flex/templates/authors.html

19 lines
439 B
HTML
Raw Normal View History

2015-07-19 02:04:01 +02:00
{% extends "base.html" %}
2017-04-22 08:41:39 +02:00
{% block title %} – {{ _('Authors') }}{% endblock %}
2015-07-19 02:04:01 +02:00
{% block content %}
<article class="single">
2015-07-19 02:04:01 +02:00
<header>
<h1 id="authors">{{ _('Authors') }}</h1>
2015-07-19 02:04:01 +02:00
</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 %}