🗽🔔 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
This commit is contained in:
Glitch (glitch-hello-website)
2024-12-12 04:04:47 +00:00
parent cedf51f1f2
commit 20fa750dca
5 changed files with 47 additions and 17 deletions
+27
View File
@@ -0,0 +1,27 @@
/* 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();