blob: 75192e2d9f5e4b1cfab095eedea4ba4ebcdb4c4a [file] [log] [blame]
pR0Ps589f9bd2013-12-06 17:00:07 -05001{% extends "base.html" %}
2{% block title %}{{ SITENAME }} - Authors{% endblock %}
3
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