pelican-red/templates/authors.html

14 lines
359 B
HTML

{% extends 'base.html' %}
{% block content %}
{% if authors %}
<ul class="item-list" itemscope itemtype="http://schema.org/ItemList">
<meta itemprop="name" content="Authors"/>
<meta itemprop="itemListOrder" content="Unordered"/>
{% for author, articles in authors %}
{% include '_author_item.html' %}
{% endfor %}
</ul>
{% endif %}
{% endblock %}