blob: bacb48ebfa5902f9e04da6f6e2d18a6467274fa1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% 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 %}
|