🐝💾 Checkpoint

./styles/zines.css:69682263/259
./scripts/zines.js:69682263/8924
This commit is contained in:
Glitch (fedizinefest)
2025-05-24 01:00:31 +00:00
parent 0a74e8cccd
commit cf01bff6a9
2 changed files with 23 additions and 10 deletions

View File

@ -12,18 +12,30 @@ function makeZine({ name, blurb, format, site, title }) {
}
zine.append(h2);
let p = document.createElement("p");
if (title) {
p.innerHTML = " made a " + format + " zine called <h3>" + title + "</h3>";
let p1 = document.createElement("p");
p1.innerHTML = " made a " + format + " zine called ";
zine.append(p1);
let h3 = document.createElement("h3");
if
h3.innerHTML = title;
zine.append(h3);
let p2 = document.createElement("p");
p2.innerHTML = "the original blurb was:";
zine.append(p2);
} else {
let p = document.createElement("p");
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);
}
zine.append(p);
let bq = document.createElement("blockquote");
let bqP = document.createElement("p");
bqP.innerHTML = blurb;
bq.append(bqP);
zine.append(bq);
return zine;
}