{% extends "base.html" %} {% block title %}Authors - {{ SITENAME }}{% endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}

Authors on {{ SITENAME }}

{% for author, articles in authors|sort %}
  • {{ author }} ({{ articles|count }})
  • {% endfor %} {% endblock %}