{% extends "base.html" %} {% block content %} {% block content_title %} {% endblock %}
{% for article in articles_page.object_list|sort(attribute="slug")%}
{% if loop.index >= 2 %}

{{ article.title }}

{% else %}

{{ article.title }}

{% endif %}
{{ article.summary }}
{% endfor %}
{% endblock content %}