<script type="text/javascript">
function ready(fn) {
if (document.readyState != 'loading'){
fn();
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}
ready(() => {
const h1 = document.createElement('h1');
h1.innerText = 'Please disable JavaScript';
h1.style.color = 'white';
h1.style.position = 'absolute';
h1.style.width = '100%';
h1.style.zIndex = 10;
h1.style.textAlign = 'center';
document.body.appendChild(h1);
});
</script>
<script src="{{ .Site.BaseURL }}js/mystify.js"></script>