blob: 31141aeef577f5d60b50853217cf83ea254921bc [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Authors | {{ SITENAME }}{% 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 %}