From 6a2b7d77439461dfb883fbd63b4d838ca00f1945 Mon Sep 17 00:00:00 2001 From: Lucielle Date: Wed, 3 Dec 2025 10:08:21 -0600 Subject: [PATCH] move html into assets --- _bottomnav.html => assets/components/_bottomnav.html | 0 assets/js/global.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename _bottomnav.html => assets/components/_bottomnav.html (100%) diff --git a/_bottomnav.html b/assets/components/_bottomnav.html similarity index 100% rename from _bottomnav.html rename to assets/components/_bottomnav.html diff --git a/assets/js/global.js b/assets/js/global.js index b95097f..fa1b2d5 100644 --- a/assets/js/global.js +++ b/assets/js/global.js @@ -1,6 +1,6 @@ const parser = new DOMParser(); -fetch("/_bottomnav.html") +fetch("/assets/components/_bottomnav.html") .then(response => response.text()) .then(text => { const bottomNavHTML = parser.parseFromString(text, "text/html");