./years/2025/zines/index.html:69682263/190 ./scripts/footer.js:69682263/355 ./scripts/nav.js:69682263/78 ./years/2025/index.html:69682263/35991 ./years/2024/index.html:69682263/8147
13 lines
380 B
JavaScript
13 lines
380 B
JavaScript
/* populate footer */
|
|
|
|
let footerHTML = `
|
|
<p>Brought to you by the <a href="/years/2025#team">FediZineFest 2025 team</a></p>
|
|
<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(); |