- Redesigned the main page with a modern look and feel. - Added search and filtering functionality for drills. - Implemented pagination for browsing drills. - Added the ability for users to mark drills as favorites.
11 lines
405 B
PHP
11 lines
405 B
PHP
<footer class="py-4 mt-5 footer">
|
|
<div class="container text-center">
|
|
<p class="mb-0">© <?php echo date("Y"); ?> <?php echo htmlspecialchars($pageTitle); ?>. All rights reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|