From 24a3d58354591d2a2ceffbdadb2aa894d382be87 Mon Sep 17 00:00:00 2001 From: "Glitch (glitch-hello-website)" Date: Mon, 23 Dec 2024 03:49:00 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=8D=F0=9F=92=91=20Checkpoint=20./scrip?= =?UTF-8?q?ts/zines.js:69682263/1166=20./for-artists/index.html:69682263/9?= =?UTF-8?q?2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- for-artists/index.html | 3 +++ scripts/zines.js | 15 ++++----------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/for-artists/index.html b/for-artists/index.html index 4619a9b..719571c 100644 --- a/for-artists/index.html +++ b/for-artists/index.html @@ -79,6 +79,9 @@ physical zine submissions to one zine. This is to ensure that shipping doesn’t become too unreasonable (for you OR me).

+

+ No AI art, please. +

Physical zine restrictions

No larger than one of:

diff --git a/scripts/zines.js b/scripts/zines.js index 34684ab..39b6990 100644 --- a/scripts/zines.js +++ b/scripts/zines.js @@ -163,16 +163,9 @@ for (let i = 0; i < zines.length; i++) { let zineCounter = document.getElementById("zine-count"); let total = zines.length; -let p0 = document.createElement("p"); -p0.innerHTML = total + " artists."; -zineCounter.append(p0); - let physical = zines.filter((zine) => zine.format == "physical" || zine.format == "physical/digital").length; -let p1 = document.createElement("p"); -p1.innerHTML = physical + " physical zines."; -zineCounter.append(p1); - let digital = zines.filter((zine) => zine.format == "digital" || zine.format == "physical/digital").length; -let p2 = document.createElement("p"); -p2.innerHTML = digital + " digital zines."; -zineCounter.append(p2); \ No newline at end of file + +let p = document.createElement("p"); +p.innerHTML = total + " artists. " + physical + " physical zines. " + digital + " digital zines."; +zineCounter.append(p); \ No newline at end of file