23 lines
878 B
PHP
23 lines
878 B
PHP
<?php
|
|
$currentUrl = url('/');
|
|
$currentUrl = $currentUrl . '/';
|
|
$bannerUrl = ($page->banner !== $currentUrl) ? $page->banner : setting('banner');
|
|
?>
|
|
<!--Page Header Start-->
|
|
<section class="page-header">
|
|
<div class="page-header__bg" style="background-image: url('<?php echo e($bannerUrl); ?>');"></div>
|
|
<div class="container">
|
|
<div class="page-header__inner">
|
|
<div class="thm-breadcrumb__box">
|
|
<ul class="thm-breadcrumb list-unstyled">
|
|
<li><a href="<?php echo e(route('home')); ?>">Home</a></li>
|
|
<li><span>-</span></li>
|
|
<li><?php echo e($page->title); ?></li>
|
|
</ul>
|
|
</div>
|
|
<h2><?php echo e($page->title); ?></h2>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!--Page Header End-->
|
|
<?php /**PATH D:\xampp\htdocs\Consultancy-CCMS\resources\views/client/rohini/pages/partials/breadcrumb.blade.php ENDPATH**/ ?>
|