🐝👜 Checkpoint
./scripts/zines.js:69682263/593 ./scripts/footer.js:69682263/9 ./styles/main.css:69682263/12
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user