✌️💺 Checkpoint

./scripts/zines2024.json:69682263/905
./scripts/zines2025.json:69682263/24
./years/2024/index.html:69682263/36112
./scripts/zines.js:69682263/7485
This commit is contained in:
Glitch (fedizinefest)
2025-05-23 16:25:19 +00:00
parent 13b8552efe
commit 3e477082a5
4 changed files with 28 additions and 18 deletions

View File

@ -1,4 +1,4 @@
function makeZine({ name, blurb, format, site, fedi }) {
function makeZine({ name, blurb, format, site, title }) {
let zine = document.createElement("li");
let h2 = document.createElement("h2");
@ -21,6 +21,12 @@ function makeZine({ name, blurb, format, site, fedi }) {
bqP.innerHTML = blurb;
bq.append(bqP);
zine.append(bq);
if (title) {
let p = document.createElement("p")
let h3 = document.createElement("h3");
h3.innerHTML=title
}
return zine;
}