blob: 75192e2d9f5e4b1cfab095eedea4ba4ebcdb4c4a [file] [log] [blame]
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Authors{% endblock %}
{% block subheader %}
{% include "modules/blogsubheader.html" %}
{% endblock subheader %}
{% block content %}
<article>
<div class="article_text">
<ul>
{% for author, articles in authors %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}