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. +
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