./years/2025/index.html:69682263/9623 ./signup/index.html:69682263/832 ./scripts/footer.js:69682263/9 ./years/2024/index.html:69682263/36121
18 lines
579 B
JavaScript
18 lines
579 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>
|
|
<p><a href="/years">see all years</a></p>
|
|
`
|
|
|
|
function populateFooter() {
|
|
let footer = document.getElementById("footer");
|
|
footer.innerHTML = footerHTML;
|
|
}
|
|
|
|
populateFooter(); |