Address changes.

This commit is contained in:
Cody Cook 2025-02-22 17:20:19 -08:00
commit 635b3ddcbc
59 changed files with 7249 additions and 2745 deletions

View file

@ -4,10 +4,13 @@
<div class="row mb-3">
<div class="col text-center">
<ul class="list-inline">
<li class="list-inline-item"><a href="/contact">Contact Us</a></li>
<li class="list-inline-item"><a href="/privacy">Privacy Policy</a></li>
<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">Terms & Conditions</a></li> -->
<!-- <li class="list-inline-item"><a href="/terms"><?php
// echo $locale['termsAndConditions'];
?>
</a></li> -->
</ul>
</div>
</div>
@ -15,16 +18,18 @@
<!-- Copyright Text -->
<div class="row mb-2">
<div class="col text-center">
<p><?php echo "&copy; 2008 - " . date('Y') . " " . $locale['allrightsreserved']; ?></p>
<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>Created using <a href="https://gitea.threefifteen.info/cody/dj_mix_hosting_software">DJ Mix Hosting Software</a></p>
<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>