{% extends "base.html" %} {% block content %} {% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %}
{% if article.image and not loop.index % 2 %}
{% endif %} {% if article.image %}
{% else %}
{% endif %}

{{ article.title }}

{% if DISPLAY_ARTICLE_INFO_ON_INDEX %} {% set DISPLAY_PLUS = True %}
{% include "includes/article_info.html" %}
{% endif %}
{% if article.image and loop.index % 2 %}
{% endif %}
{% endfor %} {% endif %} {% include 'includes/pagination.html' %} {% endblock content %}