blob: bd30e22141f10d2d41b1dee43093c1775496cf45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends "index.html" %}
{% import 'html_macros.html' as html_macros %}
{% block head %}
{{ super() }} {{ html_macros.get_meta(tags) }}
{% endblock head %}
{% block titlename %}{{'all authors'|capitalize}}{% endblock titlename %}
{% block content %}
{% block heading %}
<h1>{{'all authors'|capitalize}}</h1>
{% for author, articles in authors|sort %}
<h2>
<span class="entity">{{ author }}</span>
</h2>
<ul>
{% for article in articles %}
<li><a class="{% if CAPITALIZE_HEADINGS %}capitalize{% endif %}" href="/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}
{% endblock heading %}
{% endblock content %}
|