24 lines
803 B
PHP
24 lines
803 B
PHP
<?php
|
|
|
|
/**
|
|
* Footer Partial
|
|
*
|
|
* This file includes the footer section, including copyright information and necessary scripts.
|
|
*/
|
|
|
|
?><footer class="footer mt-auto py-3 bg-dark text-white">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date('Y'); ?> Wizdom Networks. All rights reserved.</p>
|
|
<p>
|
|
<a href="/privacy" class="text-white">Privacy Policy</a> |
|
|
<a href="/terms" class="text-white">Terms of Service</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS with Fallback -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
|
|
onerror="this.onerror=null;this.src='/assets/bootstrap/js/bootstrap.bundle.min.js';"></script>
|
|
<!-- Custom Scripts -->
|
|
<script src="/assets/js/main.js"></script>
|