./scripts/footer.js:69682263/430 ./signup/index.html:69682263/6946 ./index.html:69682263/5348 ./for-artists/index.html:69682263/256 ./styles/main.css:69682263/25
16 lines
475 B
JavaScript
16 lines
475 B
JavaScript
/* populate footer */
|
|
|
|
let footerHTML = `
|
|
<p>Created by <a href="https://leecat.art">Lee Cattarin</a> with help from:</p>
|
|
<ul>
|
|
<li><a href="https://flipping.rocks/@mycrowgirl">Lisa</a> (color palette)</li>
|
|
</ul>
|
|
<p>Site feedback? Questions? <a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a></p>
|
|
`
|
|
|
|
function populateFooter() {
|
|
let footer = document.getElementById("footer");
|
|
footer.innerHTML = footerHTML;
|
|
}
|
|
|
|
populateFooter(); |