Pelican-Blog-freibier.cc/themes/freibier/templates/authors.html
2020-12-19 23:59:44 +01:00

13 lines
342 B
HTML

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