about
blog
gallery
mail
Hi, I'm Chase
// Highlight current page in the navbar const navLinks = document.querySelectorAll('.navbar a'); navLinks.forEach(link => { if (link.href === window.location.href) { link.classList.add('current'); } });