{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles_page.object_list %} {# First item #} {% if loop.first and not articles_page.has_previous() %} {% if loop.length > 1 %}

Other articles


    {% endif %} {# other items #} {% else %} {% if loop.first and articles_page.has_previous %}
      {% endif %}
    1. {% endif %} {% if loop.last %} {% if loop.length > 1 %}
    {% endif %} {% if articles_page.has_previous() or loop.length > 1 %} {% include 'pagination.html' %} {% endif %} {% if loop.length > 1 %}
    {% endif %} {% endif %} {% endfor %} {% else %}

    Pages

    {% for page in PAGES %}
  1. {{ page.title }}
  2. {% endfor %}
    {% endif %} {% endblock content %}