blob: f668d5e5aa65c25681c9827a1f3ac908604e1919 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Authors | {{ SITENAME }}{% endblock %}
{% block description %}A listing of all authors on this site{% endblock %}
{% block subheader %}
{% include "modules/blogsubheader.html" %}
{% endblock subheader %}
{% 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 %}