diff --git a/themes/bootstrap3/templates/authors.html b/themes/bootstrap3/templates/authors.html new file mode 100644 index 0000000000000000000000000000000000000000..6fa6c8d4b17d998d9edd0f0e9681e93fe3fa4ecb --- /dev/null +++ b/themes/bootstrap3/templates/authors.html @@ -0,0 +1,19 @@ +{% 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 %}