<?php if (!empty($picture)): ?>
<div class="container-fluid history" style="background-image: url('<?= CFile::GetPath($picture); ?>');">
<div class="container">
<?php $APPLICATION->IncludeComponent(
"bitrix:breadcrumb",
"breadcrumb-light",
array(
"COMPONENT_TEMPLATE" => "breadcrumb-light",
"PATH" => "",
"SITE_ID" => "s1",
"START_FROM" => "1"
)
); ?>
<h1 class="h1-title"><?php $APPLICATION->ShowTitle() ?></h1>
</div>
</div>
<?php else: ?>
<div class="container">
<?php $APPLICATION->IncludeComponent(
"bitrix:breadcrumb",
"breadcrumb",
array(
"COMPONENT_TEMPLATE" => "breadcrumb",
"PATH" => "",
"SITE_ID" => "s1",
"START_FROM" => "1"
)
); ?>
<h2 class="h2-title"><?php $APPLICATION->ShowTitle() ?></h2>
</div>
<?php endif; ?>