🐑💳 Checkpoint

./scripts/zines.js:69682263/4284
./years/2024/zines.json:69682263/120
This commit is contained in:
Glitch (fedizinefest)
2025-05-24 00:27:02 +00:00
parent bce241c27a
commit 0028edb1ed
2 changed files with 13 additions and 8 deletions

View File

@ -13,14 +13,19 @@ function makeZine({ name, blurb, format, site, title }) {
zine.append(h2);
let p = document.createElement("p");
p.innerHTML = " is making a " + format + " zine:";
zine.append(p);
let bq = document.createElement("blockquote");
if (title) {
p.innerHTML = " made a " + format + " zine called <b>" + title + "</b>";
} else {
p.innerHTML = " is making a " + format + " zine:";
let bq = document.createElement("blockquote");
let bqP = document.createElement("p");
bqP.innerHTML = blurb;
bq.append(bqP);
zine.append(bq);
}
zine.append(p);
return zine;
}