{% extends "texsitecleanblog/base.html" %} {% load bootstrap_ui_tags %} {% load i18n %} {% block clean-blog-body-content %} {{ block.super }} {% for block in page.body %} {% if block.block_type == "intro" %} {% include "texsitecleanblog/includes/intro.html" with type=page.content_type.model image=block.value.keyvisual title=page.title slogan=block.value.slogan only %} {% endif %} {% endfor %} {% container %} {% row %}
{% for article in articles %}

{{ article.title }}

{% for block in article.specific.body %} {% if block.block_type == "intro" %} {{ block.value.slogan }} {% endif %} {% endfor %}

{% if articles.has_other_pages or not forloop.last %}
{% endif %} {% empty %} {% trans "No entries found" %} {% endfor %} {% if articles.has_other_pages %} {% include "texsitecleanblog/includes/paginator.html" with items=articles only %} {% endif %}
{% endrow %} {% endcontainer %} {% endblock %}