2013-05-28 02:15:01 +00:00
|
|
|
{% extends 'base.html' %}
|
2013-07-29 09:58:17 +00:00
|
|
|
{% block content_title %}
|
|
|
|
<a href="{{ SITEURL }}/index.html" rel="bookmark">{{ SITENAME }}</a>
|
|
|
|
{% endblock %}
|
2013-05-28 02:15:01 +00:00
|
|
|
{% block content %}
|
2013-07-29 09:58:17 +00:00
|
|
|
<p>{{ SITE_DESCR }}</p>
|
|
|
|
{% if articles and ARTICLES_ON_INDEX %}
|
|
|
|
<h2>Recent Articles:</h2>
|
|
|
|
<ul class="article-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 %}
|
2013-07-14 04:58:23 +00:00
|
|
|
{% endblock %}
|