Added ./libs/ direcroty (and the pages).

This commit is contained in:
2025-11-14 19:43:15 +01:00
parent d4ad6a62d1
commit ef3088c3f1
20 changed files with 444 additions and 112 deletions
+2 -2
View File
@@ -6,9 +6,9 @@ navBarPresent = true
function onLoadNavBar() {
const container = document.getElementById("navBarContainer")
const altString = container.dataset.alt || ""
alts = altString.replace(" ", "").split(",")
alts = altString.replaceAll(" ", "").split(",")
debugPrint("Navbar alts", alts);
debugPrint("Navbar alts", alts.join(", "));
if (!container) { return }