blob: bacb48ebfa5902f9e04da6f6e2d18a6467274fa1 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Authors{% endblock %}
{% block content %}
<main>
<section id="list">
<h2>Authors</h2>
<ul>
{% for author, articles in authors|sort %}
{% if author == "" %}
<li><a href="#">Anonymous</a>({{ articles|count }})</li>
{% else %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>({{ articles|count }})</li>
{% endif %}
{% endfor %}
</ul>
</section>
</main>
{% endblock %}
|