blob: 6d4478e43d21162d47c2b0f860c696f390d251cd [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Authors | {{ SITENAME }}{% endblock %}
{% block description %}A listing of all authors on this site{% endblock %}
{% block content %}
<article>
<div class="article_text">
<ul>
{% for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}