{% extends "base.html" %} {% block content %} {% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %}

{{ article.title }}

{{ article.content }}
{% endfor %} {% if articles_page and articles_paginator.num_pages > 1 %} {% endif %} {% endif %} {% endblock %}