blob: 741fc170597522944714e68312e3fa7615543594 [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
4{% block subheader %}
5{% include "modules/blogsubheader.html" %}
6{% endblock subheader %}
7
8{% block content %}
9<article>
10 <div class="article_text">
11 <ul>
pR0Ps829e5bd2014-09-25 03:02:06 -040012 {% for author, articles in authors|sort %}
pR0Ps589f9bd2013-12-06 17:00:07 -050013 <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
14 {% endfor %}
15 </ul>
16 </div>
17</article>
18{% endblock %}
19