{% extends "index.html" %} {% block title %}{{ SITENAME }} - Authors{% endblock title %} {% if HEADER_COVER %} {% if HEADER_COVER|lower|truncate(4, True, '') == "http" %} {% set selected_cover = HEADER_COVER %} {% else %} {% set selected_cover = SITEURL+"/"+HEADER_COVER %} {% endif %} {% elif HEADER_COLOR %} {% set selected_color = HEADER_COLOR %} {% endif %} {% block header %}

{{ SITENAME }} - Authors

{% if selected_cover %}
{% elif selected_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 %}