blob: 07ec0c8bdaeb8a469d1545ac0cb2b5759fb4affc [file] [log] [blame]
{% extends "base.html" %}
{% block content %}
<header>
<h3>Index</h3>
</header>
{% for article in articles_page.object_list %}
<article>
<h1 id="title">
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a>
</h1>
<div id="article_content">
{{ article.summary }}
</div>
</article>
{% if not loop.last %}
<hr />
{% endif %}
{% endfor %}
<footer>
{% include "pagination.html" %}
</footer>
{% endblock %}