1
0
mirror of https://github.com/arsenetar/pelican-red.git synced 2024-10-22 01:15:56 +00:00
pelican-red/templates/index.html
Andrew Senetar eca067ae67 Update templates
Update the templates to remove the excessive itemprop tags as it really
is not a good idea.  Cleanup a few minor things.
2013-11-09 15:57:26 -05:00

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 %}