Files
landing/static/assets/js/copyright-year.js
mifi dfa18c8560
Some checks failed
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/push/deploy unknown status
A bit of JS to improve the UX slightly... More tests. Everything is kosher now.
2026-02-01 19:01:12 -03:00

6 lines
144 B
JavaScript

(function () {
'use strict';
var el = document.getElementById('copyright-year');
if (el) el.textContent = new Date().getFullYear();
})();