1
0
Fork 0
This repository has been archived on 2024-12-30. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
pelican-alchemy/alchemy/templates/authors.html

17 lines
351 B
HTML
Raw Normal View History

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