{% 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/category.html.twig' %} {% include 'partials/blog/date.html.twig' %}
{% include 'partials/blog/taxonomy.html.twig' %}
{% endif %}
{{ page.content|raw }}
{% if not page.isLast %}
{{ page.prevSibling.title }} {% if page.prevSibling.taxonomy.category %} {% for category in page.prevSibling.taxonomy.category %} {{ category }} {% endfor %} {% endif %}
{% endif %} {% if page.isLast %} {% set parent = page.parent %} {% for first_item in parent.collection.slice(0, 1) %}
{{ first_item.title }} {% if first_item.taxonomy.category %} {% for category in first_item.taxonomy.category %} {{ category }} {% endfor %} {% endif %}
{% endfor %} {% endif %}
{% for image in page.media.images %}
{{ image.html }}
{% endfor %}

top