{% extends "base_blog.html" %} {% block head_links %} {{- super() -}} {% if articles_page.has_previous() %} {% endif %} {% if articles_page.has_next() %} {% endif %} {% endblock %} {% block social %} {{- super() -}} {% block social_title_url_image %} {% endblock social_title_url_image %} {% endblock %} {% block content %}
{% block content_title %} {% endblock content_title %} {% for article in articles_page.object_list %}
{% macro header() %}{% include "article_header.html" %}{% endmacro %} {{ header()|indent(8) }}
{% macro footer() %}{% include "article_footer.html" %}{% endmacro %} {{ footer()|indent(10) }}
{% endfor %} {% if articles_page.has_other_pages() %} {% macro pagination() %}{% include 'pagination.html' %}{% endmacro %} {{ pagination()|indent(6) }} {% endif %}
{% endblock %}