blog/themes/pelican-striped-html5up/templates/authors.html
Marc Beninca 3b5262ab5e themes
2021-11-08 23:46:35 +01:00

13 lines
341 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Authors{% endblock %}
{% block content %}
<h1>Authors on {{ SITENAME }}</h1>
<ul>
{%- for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}