Cody Cook 635b3ddcbc
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 5m27s
Address changes.
2025-02-22 17:20:19 -08:00

39 lines
1.7 KiB
PHP

<footer>
<div class="container py-5">
<!-- Navigation Links -->
<div class="row mb-3">
<div class="col text-center">
<ul class="list-inline">
<li class="list-inline-item"><a href="/contact"><?php echo $locale['contactus'];?></a></li>
<li class="list-inline-item"><a href="/privacy"><?php echo $locale['privacyPolicy']?></a></li>
<!-- Uncomment the following line once you have a Terms & Conditions page -->
<!-- <li class="list-inline-item"><a href="/terms"><?php
// echo $locale['termsAndConditions'];
?>
</a></li> -->
</ul>
</div>
</div>
<!-- Copyright Text -->
<div class="row mb-2">
<div class="col text-center">
<p><?php echo "&copy; " . $config['app']['copyright_start_date'] . " - " . date('Y') . " " . $locale['allrightsreserved']; ?></p>
</div>
</div>
<!-- Software Credit -->
<?php if ($config['app']['made_using']){?>
<div class="row">
<div class="col text-center">
<p><?php echo $locale['createdUsing']?> <a href="https://gitea.threefifteen.info/cody/dj_mix_hosting_software"><?php echo $locale['djmixhostingsoftware'];?></a></p>
</div>
</div>
<?php } ?>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.bundle.min.js" integrity="sha512-7Pi/otdlbbCR+LnW+F7PwFcSDJOuUJB3OxtEHbg4vSMvzvJjde4Po1v4BR9Gdc9aXNUNFVUY+SK51wWT8WF0Gg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</html>