blob: b7980634dd23c894773569b762e05adae4bf97e5 [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 "pagination.html" %}
{% endblock %}