move html into assets

This commit is contained in:
2025-12-03 10:08:21 -06:00
parent 478d84b0be
commit 6a2b7d7743
2 changed files with 1 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
const parser = new DOMParser(); const parser = new DOMParser();
fetch("/_bottomnav.html") fetch("/assets/components/_bottomnav.html")
.then(response => response.text()) .then(response => response.text())
.then(text => { .then(text => {
const bottomNavHTML = parser.parseFromString(text, "text/html"); const bottomNavHTML = parser.parseFromString(text, "text/html");