blob: f668d5e5aa65c25681c9827a1f3ac908604e1919 [file] [log] [blame]
pR0Ps589f9bd2013-12-06 17:00:07 -05001{% extends "base.html" %}
pR0Ps6bf52272013-12-11 13:25:27 -05002{% block title %}Authors | {{ SITENAME }}{% endblock %}
pR0Ps589f9bd2013-12-06 17:00:07 -05003
pR0Psd44c2f92014-12-18 01:49:27 -05004{% block description %}A listing of all authors on this site{% endblock %}
5
6
pR0Ps589f9bd2013-12-06 17:00:07 -05007{% block subheader %}
8{% include "modules/blogsubheader.html" %}
9{% endblock subheader %}
10
11{% block content %}
12<article>
13 <div class="article_text">
14 <ul>
pR0Ps829e5bd2014-09-25 03:02:06 -040015 {% for author, articles in authors|sort %}
pR0Ps589f9bd2013-12-06 17:00:07 -050016 <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
17 {% endfor %}
18 </ul>
19 </div>
20</article>
21{% endblock %}
22