MOON
Server: Apache
System: Linux server1.studioinfinity.com.br 2.6.32-954.3.5.lve1.4.90.el6.x86_64 #1 SMP Tue Feb 21 12:26:30 UTC 2023 x86_64
User: artinside (517)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
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>