{% if not hero_image_name %}
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %} {% if page.header.subtitle %}

{{ page.header.subtitle }}

{% endif %} {% include 'partials/blog/date.html.twig' %} {% include 'partials/blog/category.html.twig' %} {% include 'partials/blog/taxonomy.html.twig' %}
{% endif %}

{% if not page.isLast %} {{ page.prevSibling.title }} {% if page.prevSibling.taxonomy.category %} {% for category in page.prevSibling.taxonomy.category %} {{ category }} {% endfor %} {% endif %} {% endif %} {% if not page.isFirst %} {{ page.nextSibling.title }} {% if page.nextSibling.taxonomy.category %} {% for category in page.nextSibling.taxonomy.category %} {{ category }} {% endfor %} {% endif %} {% endif %}

{{ page.content|raw }}
{% set image = page.media.images|first %} {% if image %} {{ image.cropZoom(800,400).html }} {% endif %}

top