{% set imageSrc = null %}{% if page.image is not null %}{% set imageSrc = page.getFullImagePath %}{% endif %}{% set overrideTitle = title is not null ? title : page.title %}{% set overrideSubtitle = subtitle is not null ? subtitle : page.subtitle %}{% if bg and page.image is not null %}<divclass="page-hero page-hero--themed"style="--page-hero-image: url({{ imageCache('/' ~ page.getFullImagePath, 'zoomCrop', 2560, 1700) }})">{% else %}<div class="page-hero page-hero--themed page-hero--no-bg">{% endif %}<div class="container"><div class="page-hero__content">{{- breadcrumbs(page, domCheckIgnore(app.request.pathinfo) ) -}}<h1 class="page-hero__title">{{ overrideTitle }}</h1>{% if overrideSubtitle %}<div class="page-hero__subtitle">{{ overrideSubtitle | raw }}</div>{% endif %}{% if block('teamMemberInfo') %}<div class="page-hero__team-member-info">{% block teamMemberInfo %}{% endblock %}</div>{% endif %}{% if block('content') %}<div class="page-hero__buttons">{% block content %}{% endblock %}</div>{% endif %}</div></div></div>