✌️💺 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:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user