flex/templates/authors.html
Fidel Ramos 1327164a2d
Add id attribute to archives and authors pages
This allows linking to these pages below the fold.
2019-10-19 20:22:39 +00:00

18 lines
439 B
HTML

{% extends "base.html" %}
{% block title %} – {{ _('Authors') }}{% endblock %}
{% block content %}
<article class="single">
<header>
<h1 id="authors">{{ _('Authors') }}</h1>
</header>
<div>
<ul class="list">
{% for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}