🐑💳 Checkpoint
./scripts/zines.js:69682263/4284 ./years/2024/zines.json:69682263/120
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user