sphinx_nervproject_theme/sphinx_nervproject_theme/ablog/authors.html

10 lines
298 B
HTML

{% if ablog.author %}
<h3><a href="{{ pathto(ablog.author.path) }}">{{ gettext('Authors') }}</a></h3>
<ul>
{% for coll in ablog.author %}
{% if coll %}
<li><a href="{{ pathto(coll.docname) }}">{{ coll }} ({{ coll|length }})</a></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}