./signup/index.html:69682263/284 ./learn/index.html:69682263/284 ./for-artists/index.html:69682263/290 ./2024/index.html:69682263/290 ./styles/main.css:69682263/476 ./scripts/wip.js:69682263/230 ./years/index.html:69682263/20
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
/* populate footer */
|
|
|
|
let wipHTML = `
|
|
<p>--- always under construction ---</p>
|
|
`
|
|
|
|
function populateWip() {
|
|
let wip = document.getElementById("wip");
|
|
wip.innerHTML = wipHTML;
|
|
}
|
|
|
|
populateWip(); |