Skip to content

Commit

Permalink
Merge pull request #2527 from phili67/phili67-tree
Browse files Browse the repository at this point in the history
Trees
  • Loading branch information
phili67 committed Feb 1, 2024
2 parents 704329d + 9d5b68f commit 60ffb6b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/Include/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,19 @@ class="brand-text font-weight-light">Ecclesia<b>CRM</b> <?= SystemService::getDB
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content-header">
<h1><?= (!empty($sPageTitleSpan)) ? $sPageTitleSpan : $sPageTitle ?></h1>
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1><?= $sPageTitle; ?></h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="<?= SystemURLs::getRootPath()?>/menu"><i class="fas fa-home"></i> <?= _("Home")?></a></li>
<li class="breadcrumb-item active"><?= $sPageTitle; ?></li>
</ol>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
Expand Down

0 comments on commit 60ffb6b

Please sign in to comment.