blob: a68bf6be5eb21e7c223901c4d12a5e5a4879ab51 [file] [log] [blame]
{% extends "base.html" %}
{% block content %}
{% 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 %}
{% endblock %}
{% block footer %}
{% include "pagination.html" %}
{% endblock %}