{% extends "base.html" %} {% block menu %} {% for p in PAGES %} | {{p.title}} | {% endfor %}

Home

{% endblock %} {% block content %}
{% block content_title %}

All articles

{% endblock %}
    {% for article in articles_page.object_list %}
  1. {% endfor %}
{% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% endblock content %}