/* ------ A SUMMER'S END SHRINE HEADER COMPONENT ------ */ document.querySelector(".main-header").innerHTML = ` `; /* ------ A SUMMER'S END SHRINE NAVIGATION BAR COMPONENT ------ */ document.querySelector(".navbar").innerHTML = ` `; // Make the navigation bar sticky const header = document.querySelector(".main-header"); const navbar = document.querySelector(".navbar"); window.addEventListener("scroll", e => { const scrollPos = window.scrollY || document.documentElement.scrollTop; const stickyLine = header.scrollHeight - navbar.scrollHeight; if (scrollPos > stickyLine) { navbar.classList.add("sticky-nav"); } else { navbar.classList.remove("sticky-nav"); } }); /* ------ A SUMMER'S END SHRINE SIDEBAR COMPONENT ------ */ document.querySelector(".right-sidebar").innerHTML = ` `; /* ------ A SUMMER'S END SHRINE FOOTER COMPONENT ------ */ document.querySelector(".main-footer").innerHTML = `

Made with ♥ by Leilukin | Shrine Launched: 16 February 2023

Back to top

`;