{% extends "texsitecleanblog/base.html" %} {% load i18n %} {% load static %} {% load texsitecore_tags %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% block head-css %} {{ block.super }} {% endblock %} {% block head-extension %} {{ block.super }} {% if page.header_image %} {% image page.header_image width-1920 as keyvisual %} {% endif %} {% endblock %} {% block clean-blog-body-content %} {% if page.header_image %} {% image page.header_image width-1920 as keyvisual %}

{{ page.title }}

{% if page.is_site_root %}
{% if page.subtitle %}

{{ page.subtitle }}

{% endif %} {% else %} {% if page.subtitle %}

{{ page.subtitle }}

{% endif %} {% include "texsitecleanblog/includes/author.html" with author=page.owner published_at=page.first_published_at only %} {% endif %}
{% endif %}
{% for block in page.body %} {% get_block_template block.block_type as block_template %} {% include block_template with value=block.value %} {% endfor %}
{% endblock %} {% block body-javascript %} {{ block.super }} {% endblock %}