Files
fedizinefest/scripts/footer.js

18 lines
579 B
JavaScript
Raw Normal View History

/* 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>
<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>
<p><a href="/years">see all years</a></p>
`
function populateFooter() {
let footer = document.getElementById("footer");
footer.innerHTML = footerHTML;
}
populateFooter();