blob: d1e3e89e8ea61d7d1019faae716e49062881a373 [file] [log] [blame]
{% extends "base.html" %}
{% block content %}
<header>
<h3>
{% block header %}
Index &#124; <a href="{{ SITEURL }}/archives.html">Archives</a> &#124; <a href="{{ SITEURL }}/categories.html">Categories</a>
{% endblock header %}
</h3>
</header>
{% for article in articles_page.object_list %}
<article>
<div id="article_title">
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a>
</div>
<div id="article_text">
{{ article.summary }}
</div>
</article>
{% if not loop.last %}
<hr />
{% endif %}
{% endfor %}
<footer>
{% include "pagination.html" %}
</footer>
{% endblock %}