/* populate WIP banner */ let wipHTML = `

This site is a work in progress. If you experience issues, please try waiting a minute and reloading before reaching out.

` function populateWip() { } /* populate footer */ let footerHTML = `

Created by Lee Cattarin with help from:

Site feedback? Questions? Reach out to Lee

` function populateFooter() { let footer = document.getElementById("footer"); footer.innerHTML = footerHTML; } populateFooter();