Files
fedizinefest-deprecated/scripts/footer.js
T

18 lines
579 B
JavaScript
Raw Normal View History

2024-12-11 23:01:28 +00:00
/* populate footer */
let footerHTML = `
2024-12-12 03:53:34 +00:00
<p>Created by <a href="https://leecat.art">Lee Cattarin</a> with help from:</p>
2024-12-11 23:12:34 +00:00
<ul>
2025-05-23 14:58:47 +00:00
<li><a href="https://flipping.rocks/@mycrowgirl">Lisa</a> (color palette)</li>
2024-12-12 17:56:56 +00:00
<li>the <a href="/team">FediZineFest 2025 team</a></li>
2024-12-11 23:12:34 +00:00
</ul>
2024-12-11 23:01:28 +00:00
<p>Site feedback? Questions? <a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a></p>
2025-05-08 20:01:00 +00:00
<p><a href="/years">see all years</a></p>
2024-12-11 23:01:28 +00:00
`
function populateFooter() {
let footer = document.getElementById("footer");
footer.innerHTML = footerHTML;
}
populateFooter();