mirror of
https://github.com/arsenetar/pelican-red.git
synced 2024-11-23 11:49:01 +00:00
Andrew Senetar
eca067ae67
Update the templates to remove the excessive itemprop tags as it really is not a good idea. Cleanup a few minor things.
12 lines
212 B
HTML
12 lines
212 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
{% if authors %}
|
|
<ul class="item-list">
|
|
{% for author, articles in authors %}
|
|
{% include '_author_item.html' %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|