blob: dcfe70896d0059a2b68dec9e6ee17225290cedfe [file] [log] [blame]
{% extends "base.html" %}
{% block content %}
{% set custom_header = "Index" %}
{% include "header.html" %}
{% 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 %}