blob: 099ed0f2e2c12bb3ce349375e15ea72dec2ebd3c [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Blog | {{ SITENAME }}{% endblock %}
{% block content %}
{% for article in articles_page.object_list|sort(attribute='no') %}
<article>
<div class="article_title">
<h3><a href="{{ BLOGURL }}/{{ article.url }}">{{ article.title }}</a></h3>
{{ article.summary }}
</div>
</article>
{% if not loop.last %}
<hr />
{% endif %}
{% endfor %}
{% endblock %}
{% if BLOCK_FOOTER %}
{% block footer %}
<footer>
{% include "modules/pagination.html" %}
</footer>
{% endblock %}
{% endif %}