- No AI-generated content, please. -
+No AI-generated content, please.
Physical zine restrictions
No larger than one of:
@@ -84,8 +86,8 @@Payment
This is not a get-rich-quick scheme for anyone involved. In - 2024, the artist payout was about $35 USD per - artist. + 2024, the artist payout was about $35 USD + per artist.
This year, I'll be adjusting the payment scheme to more appropriately diff --git a/scripts/top-nav.js b/scripts/nav.js similarity index 73% rename from scripts/top-nav.js rename to scripts/nav.js index 7d12cfc..718d3d0 100644 --- a/scripts/top-nav.js +++ b/scripts/nav.js @@ -14,18 +14,25 @@ let navItems = [ { "href": "/zines", "title": "zines!" - }, + } ] function populateNav() { let nav = document.getElementById("top-nav"); + let path = window.location.pathname; for (let i = 0; i < navItems.length; i++) { + if (navItems[i].href == path) { + continue; + } + let a = document.createElement("a"); a.classList.add("nav-item"); a.href = navItems[i].href; - a.innerHtml = " " + navItems[i].title + " " + a.innerHTML = " " + navItems[i].title + " "; nav.append(a); } -} \ No newline at end of file +} + +populateNav(); \ No newline at end of file