A bit of JS to improve the UX slightly... More tests. Everything is kosher now.
Some checks failed
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/push/deploy unknown status

This commit is contained in:
2026-02-01 19:01:12 -03:00
parent 3a940e9da1
commit dfa18c8560
9 changed files with 682 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
(function () {
'use strict';
var el = document.getElementById('copyright-year');
if (el) el.textContent = new Date().getFullYear();
})();