/* Top nav */ const navItems = [ { href: "/", name: "↩ back home" }, { href: "/directory/", name: "🧺 all markets" } ]; const populateNav = function() { let nav = document.getElementById("top-nav"); let path = window.location.pathname; for (const item of navItems) { let a = document.createElement("a"); a.href = item.href; a.innerHTML = item.name; if (item.href === path) a.id = "current-page"; nav.append(a); } } populateNav(); /* Footer */ const footerHTML = `
Website questions or feedback? email Lee
Market questions? email Hawke
brought to you in 2025
` const populateFooter = function() { let footer = document.getElementById("footer"); footer.innerHTML = footerHTML; } populateFooter();