Files
fedizinefest-deprecated/scripts/footer.js
T

17 lines
544 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>
2024-12-13 01:26:43 +00:00
<li><a href="https://flipping.rocks/@mycrowgirl">Lisa</a> (original 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>
`
function populateFooter() {
let footer = document.getElementById("footer");
footer.innerHTML = footerHTML;
}
populateFooter();