./years/2025/index.html:69682263/656 ./scripts/wip.js:69682263/1376 ./styles/main.css:69682263/395 ./index.html:69682263/10113 ./zines/index.html:69682263/334 ./years/index.html:69682263/334 ./years/2026/index.html:69682263/341 ./years/2024/index.html:69682263/334 ./team/index.html:69682263/334 ./status/index.html:69682263/334 ./signup/index.html:69682263/50 ./learn/index.html:69682263/50 ./for-artists/index.html:69682263/50 ./2024/index.html:69682263/50
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
/* populate footer */
|
|
|
|
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 with
|
|
questions.
|
|
</p>
|
|
`
|
|
|
|
function populateWip() {
|
|
let wip = document.getElementById("wip");
|
|
wip.innerHTML = wipHTML;
|
|
}
|
|
|
|
populateWip(); |