2023-11-16 12:02:59 -05:00
|
|
|
(function (window) {
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
// Show the current year
|
2023-11-27 16:19:54 -05:00
|
|
|
const currentYearElement = document.getElementById("current-year");
|
2023-11-16 12:02:59 -05:00
|
|
|
|
2023-11-27 16:19:54 -05:00
|
|
|
if (currentYearElement) {
|
|
|
|
|
currentYearElement.textContent = new Date().getFullYear();
|
|
|
|
|
}
|
|
|
|
|
})(window);
|