{% extends "base.html" %} {% block title %}{{ SITENAME }} - Authors{% endblock %} {% block content %} Authors {% for author, articles in authors|sort %} {% if author == "" %} Anonymous({{ articles|count }}) {% else %} {{ author }}({{ articles|count }}) {% endif %} {% endfor %} {% endblock %}