{% extends "index.html" %} {% block title %}{{ SITENAME }} - Authors{% endblock title %} {% block header %}

{{ SITENAME }} - Authors

{% if HEADER_COVER %}
{% elif HEADER_COLOR %}
{% else %}
{% endif %}
{% endblock header %} {% block content %} {% for author, articles in authors|sort %} {% set author_name = author.name | title %} {% if AUTHORS_BIO and author.name.lower() in AUTHORS_BIO %} {% set author_name = AUTHORS_BIO[author.name.lower()].name or author.name %} {% endif %}

{{ author_name }} ({{ articles|count }})

{% if not loop.last %}
{% endif %} {% endfor %} {% endblock content %}