1
0
Fork 0
forked from github/pelican
pelican-theme/templates/authors.html

12 lines
390 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - Authors{% endblock %}
{% block content %}
<h1 class="text-3xl md:text-5xl">Authors on {{ SITENAME }}</h1>
2014-09-05 22:34:29 -04:00
<ul>
{% for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
2014-09-05 22:34:29 -04:00
</ul>
{% endblock %}