{% extends 'partials/base.html.twig' %}
{% set blog_image = page.media.images[page.header.hero_image] ?: page.media.images|first %}
{% set collection = page.collection() %}
{% set blog = page.find(header_var('blog_url')|defined(theme_var('blog-page'))) %}
{% set show_breadcrumbs = header_var('show_breadcrumbs', [page, blog])|defined(true) %}
{% set show_sidebar = header_var('show_sidebar', [page, blog])|defined(false) %}
{% set show_pagination = header_var('show_pagination', [page, blog])|defined(true) %}
{% set has_hero_content = blog_image or page.content|striptags|trim is not empty %}
{% block hero %}
{% if blog_image %}
{% include 'partials/hero.html.twig' with {id: 'blog-hero', content: page.content, hero_image: blog_image} %}
{% endif %}
{% endblock %}
{% block body %}
{% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %}
{% include 'partials/breadcrumbs.html.twig' %}
{% endif %}
{% if not blog_image and page.title %}
{{ page.title }}
{% if page.header.subtitle %}
{{ page.header.subtitle }}
{% endif %}
{% if page.content|striptags|trim is not empty %}