blob: 059dfe2fc2bdb45de74722b63292ed6f312c396f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "index.html" %}
{% import 'html_macros.html' as html_macros %}
{% block head %}
{{ super() }} {{ html_macros.get_meta(author) }}
{% endblock head %}
{% block titlename %}{{author.name|capitalize}}{% endblock titlename %}
{#
#}
{% block heading %}
{#
<h1 class="{% if CAPITALIZE_HEADINGS %}capitalize{% endif %}">
#}
<!--
<h1 class="heading uk-text-primary">
Articles by <span class="entity">{{ author }}</span>
</h1>
-->
{% endblock heading %}
|