28 lines
937 B
PHP
28 lines
937 B
PHP
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container text-center">
|
|
<div class="social-icons mb-3">
|
|
<a href="#"><i class="bi bi-twitter-x"></i></a>
|
|
<a href="#"><i class="bi bi-facebook"></i></a>
|
|
<a href="#"><i class="bi bi-linkedin"></i></a>
|
|
</div>
|
|
<p>© <?php echo date("Y"); ?> <?php echo htmlspecialchars($project_name); ?>. All Rights Reserved.</p>
|
|
<p>
|
|
<a href="#">About</a> ·
|
|
<a href="#">Contact</a> ·
|
|
<a href="#">Privacy Policy</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS Bundle -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
</body>
|
|
</html>
|