/** * nav.js — Shared sidebar navigation * dspmsoftware.com * Injected into every page. Edit once, updates everywhere. */ (function() { const nav = `
`; const container = document.getElementById('sidebar-nav'); if (container) { container.innerHTML = nav; const path = window.location.pathname; const links = container.querySelectorAll('a.nav-item'); links.forEach(link => { const href = link.getAttribute('href'); if (href === path || (href !== '/' && path.startsWith(href))) { link.classList.add('active'); } }); } })();