{% extends "base.html" %} {% block title %}Blog | {{ SITENAME }}{% endblock %} {% block content %} {% for article in articles_page.object_list|sort(attribute='no') %}

{{ article.title }}

{{ article.summary }}
{% if not loop.last %}
{% endif %} {% endfor %} {% endblock %} {% if BLOCK_FOOTER %} {% block footer %} {% endblock %} {% endif %}