File: /home/artinside/public_html/lhh/themes/en/views/page-title.php
<section id="page-title" class="page-title-parallax page-title-dark"
style="background: url('<?= $pageTitle->image ? url("shared/img/{$pageTitle->image}") : $pageTitle->imageCover ?>') no-repeat center center / cover; min-height: 600px; padding: 190px 0; " >
<!-- <div class="overlay overlay-black opacity-light"></div>-->
<div class="container clearfix mt-5">
<h1 class="text-shadow"><?= $pageTitle->title ?></h1>
<span class="text-shadow"><?= $pageTitle->subtitle ?></span>
<?php if (isset($breadcrumb) AND $breadcrumb != ""):?>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="<?= url()?>">Home</a></li>
<?php
$i=1;
foreach ($breadcrumb as $b):
if($b[1] == "#" || $b[1] == ""):
echo "<li class='breadcrumb-item" .($i == count((array)$breadcrumb) ? " active" : ""). "' aria-current='page'>{$b[0]}</li>";
else:
echo "<li class='breadcrumb-item" .($i == count((array)$breadcrumb) ? " active" : ""). "' aria-current='page'><a href='" .$b[1]. "'>{$b[0]}</a></li>";
endif;
$i++;
?>
<?php endforeach; ?>
</ol>
<?php endif; ?>
</div>
</section></div>