remove sage 10

This commit is contained in:
2025-11-22 17:26:37 +00:00
parent 073d157231
commit b862ff9755
119 changed files with 0 additions and 28393 deletions

View File

@@ -1,3 +0,0 @@
<footer class="content-info">
@php(dynamic_sidebar('sidebar-footer'))
</footer>

View File

@@ -1,21 +0,0 @@
export default function Footer() {
const body = document.querySelector("body");
const footer = document.querySelector(".js-footer");
if(!footer) return;
const links = footer.querySelectorAll("a");
const currentURL = location.protocol + '//' + location.host + location.pathname;
links.forEach(link => {
const hash = link.hash;
const href = link.href;
link.addEventListener("click", () => {
if(href.includes(currentURL)) {
body.classList.remove("menu-open");
}
});
});
}