2024-12-12 04:04:47 +00:00
|
|
|
/* populate WIP banner */
|
|
|
|
|
let wipHTML = `
|
|
|
|
|
<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>
|
|
|
|
|
`
|
|
|
|
|
|
|
|
|
|
function populateWip() {
|
2024-12-12 04:16:13 +00:00
|
|
|
let wip = document.createElement("div");
|
|
|
|
|
wip.innerHTML = wipHTML;
|
|
|
|
|
wip.className = "wip";
|
2024-12-12 04:04:47 +00:00
|
|
|
|
2024-12-12 04:16:13 +00:00
|
|
|
let main = document.getElementById("main");
|
|
|
|
|
let mainParent = main.parentNode;
|
|
|
|
|
|
|
|
|
|
mainParent.insertBefore(wip, main);
|
2024-12-12 04:04:47 +00:00
|
|
|
}
|
|
|
|
|
|
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();
|