Files
fedizinefest/scripts/populate.js
Glitch (glitch-hello-website) 20fa750dca 🗽🔔 Checkpoint
./signup/index.html:69682263/460
./styles/main.css:69682263/136
./index.html:69682263/1042
./for-artists/index.html:69682263/2178
./scripts/populate.js:69682263/305
2024-12-12 04:04:47 +00:00

27 lines
712 B
JavaScript

/* 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() {
}
/* 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>
</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();