2024-12-13 01:03:15 +00:00
|
|
|
let zines = [
|
|
|
|
|
{
|
2024-12-13 01:14:39 +00:00
|
|
|
"name": "lee",
|
2024-12-13 01:03:15 +00:00
|
|
|
"blurb": "something about gender or shit, who knows",
|
|
|
|
|
"format": "physical/digital",
|
2024-12-13 01:14:39 +00:00
|
|
|
"site": "https://leecat.art",
|
2024-12-13 01:03:15 +00:00
|
|
|
"fedi": "https://flipping.rocks/@inherentlee"
|
|
|
|
|
}
|
2024-12-13 01:14:39 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
function makeZine({name, blurb, format, site, fedi}) {
|
|
|
|
|
let zine = document.createElement("div");
|
|
|
|
|
zine.className = "zine";
|
|
|
|
|
|
|
|
|
|
let h3 = document.createElement("h3");
|
|
|
|
|
h3.className = "artist";
|
2024-12-13 01:26:43 +00:00
|
|
|
h3.innerHTML = name;
|
2024-12-13 01:14:39 +00:00
|
|
|
zine.append(h3);
|
|
|
|
|
|
|
|
|
|
let p = document.createElement("p");
|
2024-12-13 01:26:43 +00:00
|
|
|
p.className = "intro";
|
|
|
|
|
p.innerHTML = name + " is making a " + format + " zine about...";
|
2024-12-13 01:14:39 +00:00
|
|
|
zine.append(p);
|
|
|
|
|
|
2024-12-13 01:26:43 +00:00
|
|
|
let bq = document.createElement("blockquote");
|
|
|
|
|
let bqP = document.createElement("p");
|
|
|
|
|
bq.className = "blurb"
|
|
|
|
|
bqP.innerHTML = blurb;
|
|
|
|
|
bq.append(bqP);
|
|
|
|
|
zine.append(bq);
|
|
|
|
|
|
2024-12-13 01:14:39 +00:00
|
|
|
return zine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let zineContainer = document.getElementById("zine-container");
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < zines.length; i++) {
|
2024-12-13 01:38:18 +00:00
|
|
|
// zineContainer.append(makeZine(zines[i]));
|
2024-12-13 01:14:39 +00:00
|
|
|
}
|