{% extends "base.html" %} {% block content %} {% if title %}

{{ title }}


{% endif %} {% with is_index = True %} {% for article in articles %} {% include "article_content.html" %} {% if loop.index != articles|count %}
{% endif %} {% endfor %} {% endwith %} {% include "pagination.html" %} {% endblock %}