blob: 1d1066f498bf544b5a985668be05d7ec0adf70a9 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Blog | {{ SITENAME }}{% endblock %}
{% 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 %}
<footer>
{% include "modules/pagination.html" %}
</footer>
{% endblock %}