Files
fedizinefest/scripts/footer.js
Glitch (glitch-hello-website) 1c5f8d1928 🐝👜 Checkpoint
./scripts/zines.js:69682263/593
./scripts/footer.js:69682263/9
./styles/main.css:69682263/12
2024-12-13 01:26:43 +00:00

17 lines
544 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> (original color palette)</li>
<li>the <a href="/team">FediZineFest 2025 team</a></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();