17 lines
535 B
JavaScript
17 lines
535 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>
|
|
<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(); |