Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion templates/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,12 @@ <h1 class="text-center">Contact Us</h1>
</main>

<footer class="container text-center mt-5">
<p>&copy; 2025 Safe Mom. All rights reserved.</p>
<p>&copy; <span id="year"></span> Safe Mom. All rights reserved.</p>
</footer>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>
7 changes: 5 additions & 2 deletions templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,13 @@
</div>
</div>
<footer class="container text-center p-0 mt-3 mb-3">
<p> &copy;Copyright Safe Mom 2024</p>
<p>&copy; <span id="year"></span> Safe Mom. All rights reserved.</p>
</footer>
</main>

<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
Expand Down