Files
website/assets/js/global.js

13 lines
458 B
JavaScript
Raw Normal View History

2025-12-02 10:22:42 -06:00
const parser = new DOMParser();
2025-12-03 10:08:21 -06:00
fetch("/assets/components/_bottomnav.html")
2025-12-02 10:22:42 -06:00
.then(response => response.text())
.then(text => {
2025-12-02 11:46:59 -06:00
const bottomNavHTML = parser.parseFromString(text, "text/html");
const bottomNav = bottomNavHTML.getElementById("bottomnav");
2025-12-02 10:22:42 -06:00
2025-12-02 11:46:59 -06:00
const pathSpan = bottomNav.querySelector("span");
pathSpan.innerText = pathSpan.innerText.replace("%PATH%", document.location.pathname);
document.body.appendChild(bottomNav);
2025-12-02 10:22:42 -06:00
});