🏘💸 Checkpoint
./scripts/zines.js:69682263/3572 ./styles/zines.css:69682263/448 ./styles/main.css:69682263/34
This commit is contained in:
@ -14,19 +14,17 @@ function makeZine({ name, blurb, format, site, title }) {
|
||||
|
||||
let p = document.createElement("p");
|
||||
if (title) {
|
||||
p.innerHTML = " made a " + format + " zine called <b>" + title + "</b>";
|
||||
p.innerHTML = " made a " + format + " zine called <h3>" + title + "</h3>";
|
||||
} else {
|
||||
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);
|
||||
let bqP = document.createElement("p");
|
||||
bqP.innerHTML = blurb;
|
||||
bq.append(bqP);
|
||||
zine.append(bq);
|
||||
}
|
||||
zine.append(p);
|
||||
|
||||
|
||||
|
||||
return zine;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user