{% extends 'partials/base.html.twig' %} {% set blog = page.find(theme_var('blog-page')|default('/blog')) %} {% set show_breadcrumbs = header_var('show_breadcrumbs', [page, blog]) %} {% set show_sidebar = header_var('show_sidebar', [page, blog]) %} {% set show_pagination = header_var('show_pagination', [page, blog]) %} {% set hero_image_name = page.header.hero_image %} {% block hero %} {% if hero_image_name %} {% set hero_image = page.media[hero_image_name] %} {% set content %}

{{ page.title }}

{{ page.header.subtitle }}

{% include 'partials/blog/date.html.twig' %} {% include 'partials/blog/taxonomy.html.twig' %} {% endset %} {% include 'partials/hero.html.twig' with {id: 'blog-hero'} %} {% endif %} {% endblock %} {% block body %}
{% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %} {% include 'partials/breadcrumbs.html.twig' %} {% endif %} {% embed 'partials/layout.html.twig' %} {% block item %} {% include 'partials/blog-item.html.twig' %} {% endblock %} {% block sidebar %} {% include 'partials/sidebar.html.twig' %} {% endblock %} {% endembed %}
{% endblock %}