Files
fedizinefest/scripts/footer.js
Glitch (glitch-hello-website) b838a36589 💸🎡 Checkpoint
./scripts/footer.js:69682263/140
2024-12-11 23:12:34 +00:00

16 lines
477 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();