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.
22 lines
576 B
HTML
22 lines
576 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<p>{{ SITE_DESCR }}</p>
|
|
{% if articles and ARTICLES_ON_INDEX %}
|
|
<h2>Recent Articles:</h2>
|
|
<ul class="item-list">
|
|
{% for article in articles[0:ARTICLES_ON_INDEX] %}
|
|
{% include '_list_item.html' %}
|
|
{% endfor %}
|
|
</ul>
|
|
<p><a href="{{ SITEURL }}/archives.html">View more articles in the Archives...</a></p>
|
|
{% endif %}
|
|
{% if pages and PAGES_ON_INDEX %}
|
|
<h2>Pages:</h2>
|
|
<ul class="inline-list">
|
|
{% for page in pages %}
|
|
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|