Initial commit

This commit is contained in:
2025-04-08 12:06:32 +02:00
commit 66df99954e
18 changed files with 853 additions and 0 deletions

17
js/lang.js Normal file
View File

@@ -0,0 +1,17 @@
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
function change_lang(base) {
let cz = document.querySelector(base + "_cz");
let en = document.querySelector(base + "_en");
if(cz.style.display == "none") {
cz.style.display = "";
en.style.display = "none";
} else {
cz.style.display = "none";
en.style.display = "";
}
}
// @license-end