🐝👜 Checkpoint

./scripts/zines.js:69682263/593
./scripts/footer.js:69682263/9
./styles/main.css:69682263/12
This commit is contained in:
Glitch (glitch-hello-website)
2024-12-13 01:26:43 +00:00
parent ee8ec04d8f
commit 1c5f8d1928
3 changed files with 12 additions and 5 deletions

View File

@ -13,15 +13,22 @@ function makeZine({name, blurb, format, site, fedi}) {
zine.className = "zine";
let h3 = document.createElement("h3");
h3.innerHTML = name;
h3.className = "artist";
h3.innerHTML = name;
zine.append(h3);
let p = document.createElement("p");
p.innerHTML = blurb;
p.className = "blurb";
p.className = "intro";
p.innerHTML = name + " is making a " + format + " zine about...";
zine.append(p);
let bq = document.createElement("blockquote");
let bqP = document.createElement("p");
bq.className = "blurb"
bqP.innerHTML = blurb;
bq.append(bqP);
zine.append(bq);
return zine;
}