We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bee7886 commit 757460bCopy full SHA for 757460b
pages/saved-blogs.html
@@ -93,11 +93,16 @@ <h5>
93
94
<div class="footer-bottom">
95
<div class="footer-container">
96
- <p class="footer-copyright">
97
- © 2024 Recode-Hive. Made with 🖤️ by the community. All rights reserved.
98
- </p>
+ <p class="footer-copyright">
+ © <span id="dynamic-year"></span> Recode-Hive. Made with 🖤️ by the community. All rights reserved.
+ </p>
99
</div>
100
- </div>
+ </div>
101
+
102
+ <script>
103
+ document.getElementById("dynamic-year").textContent = new Date().getFullYear();
104
+ </script>
105
106
</footer>
107
<script>
108
document.addEventListener('DOMContentLoaded', () => {
0 commit comments