dj_mix_hosting_software/index.php
Cody Cook 8b4dfe0c0c
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 37s
Dark mode and other color enhancements to match
2024-05-13 19:38:06 -07:00

19 lines
625 B
PHP

<?php
require_once 'includes/globals.php';
$title = $locale['home'];
require_once 'includes/header.php'; ?>
<section>
<div class="container py-5">
<div class="row">
<div class="col">
<nav aria-label="breadcrumb" class="bg-body-tertiary rounded-3 p-3 mb-4">
<ol class="breadcrumb mb-0">
<li class="breadcrumb-item active"><a href="/"><?php echo $locale['home']; ?></a></li>
</ol>
</nav>
</div>
</div>
</div>
</section>
<?php require_once 'includes/footer.php'; ?>