blob: 50c12965c494822521d40ec4336ee6d2556b6d39 [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 }}" rel="bookmark">{{ 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 %}