{% extends "base.html" %} {% block content %}
{% block content_title %}

All articles

{% endblock %}
    {% for article in articles_page.object_list %}
  1. {% endfor %}

{% if articles_page.has_previous() %} {% if articles_page.previous_page_number() == 1 %} « {% else %} « {% endif %} {% endif %} Page {{ articles_page.number }} / {{ articles_paginator.num_pages }} {% if articles_page.has_next() %} » {% endif %}

{% endblock content %}