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 8abbba2 commit 05a0ea9Copy full SHA for 05a0ea9
1 file changed
_includes/footer.html
@@ -4,7 +4,7 @@
4
</div>
5
<footer>
6
<p class=" trademark">
7
- "Fields of View" and "FoV" are trademarks of Fields of View Society © 2022. Fields of View. <br>All Rights
+ "Fields of View" and "FoV" are trademarks of Fields of View Society © <span>2022</span>. Fields of View. <br>All Rights
8
Reserved.
9
</p>
10
<p class="address">
@@ -124,4 +124,11 @@
124
width: clamp(30px, 3rem, 40px);
125
}
126
127
-</style>
+</style>
128
+<script>
129
+ document.addEventListener('DOMContentLoaded', function() {
130
+ const yearSpan = document.querySelector('footer .trademark span');
131
+ const currentYear = new Date().getFullYear();
132
+ yearSpan.textContent = currentYear;
133
+ })
134
+</script>
0 commit comments