authors.html 388 B

12345678910111213141516
  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - Authors{% endblock %}
  3. {% block content %}
  4. <section id="content" class="body">
  5. <h1>Authors on {{ SITENAME }}</h1>
  6. <ul>
  7. {% for author, articles in authors|sort %}
  8. <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
  9. {% endfor %}
  10. </ul>
  11. </section>
  12. {% endblock %}