blob: 635ef08e655f4916da2c87b2a0953ec124704e85 [file] [log] [blame]
{% extends "base.html" %}
{% block content %}
{% for article in articles_page.object_list %}
<article>
<div id="article_title">
<h3><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3>
</div>
<div id="article_text">
{{ article.summary }}
</div>
</article>
{% if not loop.last %}
<hr />
{% endif %}
{% endfor %}
{% endblock %}
{% block footer %}
{% include "modules/pagination.html" %}
{% endblock %}