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