{% extends "base.html" %} {% block content %}
{% for article in articles_page.object_list %}

{{ article.title }}

{% if article.content %}
{{ article.content }}
{% endif %}
{% endfor %}
{% if articles_page.has_other_pages() %} {% endif %} {% endblock %}