{% extends "texsitecleanblog/base.html" %} {% 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 author=page.owner published_at=page.first_published_at only %}
{% else %} {{ block }} {% endif %} {% if forloop.last %}
{% include "texsitecleanblog/includes/navigator.html" with backlink=page.get_parent.url backtitle=page.get_parent.title nextlink=page.next_sibling.url nexttitle=page.next_sibling.title previouslink=page.previous_sibling.url previoustitle=page.previous_sibling.title only %}
{% endif %} {% endfor %} {% endblock %}