{% extends "base.html" %} {% block title %}Authors | {{ SITENAME }}{% endblock %} {% block description %}A listing of all authors on this site{% endblock %} {% block content %} {% for author, articles in authors|sort %} {{ author }} ({{ articles|count }}) {% endfor %} {% endblock %}