mirror of
https://github.com/arsenetar/pelican-red.git
synced 2024-11-22 11:19:02 +00:00
Andrew Senetar
0d53dc55d4
The templates now include microformatting from schema.org. The title and content_title blocks are no longer in most templates. This updates the progess on issue #1
14 lines
359 B
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 %}
|
|
|