blob: 31141aeef577f5d60b50853217cf83ea254921bc [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>
12 {% for author, articles in authors %}
13 <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
14 {% endfor %}
15 </ul>
16 </div>
17</article>
18{% endblock %}
19