Files
website/assets/global.js
2025-12-02 10:22:42 -06:00

9 lines
249 B
JavaScript

const parser = new DOMParser();
fetch("/_bottomnav.html")
.then(response => response.text())
.then(text => {
const bottomNav = parser.parseFromString(text, "text/html");
document.body.appendChild(bottomNav.getElementById("bottomnav"));
});