🌕🖼 Checkpoint

./scripts/zines.js:69682263/13088
./zines/index.html:69682263/304
This commit is contained in:
Glitch (glitch-hello-website)
2024-12-23 03:25:58 +00:00
parent 7963e3bee8
commit 7733ceba51
2 changed files with 25 additions and 13 deletions

View File

@ -6,28 +6,38 @@ let zines = [
"blurb": "" "blurb": ""
}, },
*/ */
{
name: "Pesto Jaguar",
site: "https://sunny.garden/@pestojaguar",
format: "digital",
blurb:
"abstract, absurd, surreal, experimental?... Perhaps comics-adjacent or sciFi-adjacent?... some manner of weird zine, mainly images with some text like experimental prose or poetry, even?... Around 20 pages in A5. No 'AI' or image/text generation, just human made digital art.",
},
{ {
name: "bouncinglime", name: "bouncinglime",
format: "physical/digital", format: "physical/digital",
blurb: "four postcards printed on cardstock (physical) or for printing on cardstock (digital) in black-and-white that can be colored and otherwise decorated and sent out!", blurb:
"four postcards printed on cardstock (physical) or for printing on cardstock (digital) in black-and-white that can be colored and otherwise decorated and sent out!",
}, },
{ {
name: "lee", name: "lee",
site: "https://leecat.art", site: "https://leecat.art",
format: "physical", format: "physical",
blurb: "2 color hand-printed zine with pictures of my dog" blurb: "2 color hand-printed zine with pictures of my dog",
}, },
{ {
name: "Em/mett", name: "Em/mett",
site: "https://proteanart.xyz", site: "https://proteanart.xyz",
format: "physical", format: "physical",
blurb: "So You Want To Be A Pen Pal minizine. About being a pen pal for incarcerated folks! And beginner advocacy work!" blurb:
"So You Want To Be A Pen Pal minizine. About being a pen pal for incarcerated folks! And beginner advocacy work!",
}, },
{ {
name: "Mythical Type", name: "Mythical Type",
site: "https://mythicaltype.com/zines/", site: "https://mythicaltype.com/zines/",
format: "physical", format: "physical",
blurb: "“Text Message Moods” is an 8-page mini zine that illustrates what text message conversations look like, depending on peoples moods. Hand-drawn, printed in color on white paper." blurb:
"“Text Message Moods” is an 8-page mini zine that illustrates what text message conversations look like, depending on peoples moods. Hand-drawn, printed in color on white paper.",
}, },
{ {
name: "Acin Fals", name: "Acin Fals",
@ -150,3 +160,11 @@ let zineContainer = document.getElementById("zine-container");
for (let i = 0; i < zines.length; i++) { for (let i = 0; i < zines.length; i++) {
zineContainer.append(makeZine(zines[i])); zineContainer.append(makeZine(zines[i]));
} }
let zineCounter = document.getElementById("zine-count");
let total = zines.length;
let p0 = document.createElement("p");
p0.innerHTML = total + " artists.";
zineCounter.append(p0);
let formats = zines.map(zine => zine.format);

View File

@ -58,15 +58,9 @@
<h1>The Zines!</h1> <h1>The Zines!</h1>
</header> </header>
<p> <div id="zine-count">
<b>16</b> artists. <!-- Auto populated by scripts/zines.js -->
</p> </div>
<p>
<b>12</b> physical zines.
</p>
<p>
<b>13</b> digital zines.
</p>
<ul id="zine-container"> <ul id="zine-container">
<!-- Auto populated by scripts/zines.js --> <!-- Auto populated by scripts/zines.js -->