Files
fedizinefest-deprecated/scripts/populate.js
T

27 lines
712 B
JavaScript
Raw Normal View History

2024-12-12 04:04:47 +00:00
/* populate WIP banner */
let wipHTML = `
<div class="wip">
<p>This site is a <b>work in progress</b>. If you experience issues, please try waiting a minute and reloading before reaching out.</p>
</div>
`
function populateWip() {
}
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>
<li><a href="https://flipping.rocks/@mycrowgirl">Lisa</a> (color palette)</li>
</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();