Add information for visitors without Javascript

Signed-off-by: Jacob Kiers <jacob@jacobkiers.net>
This commit is contained in:
Jacob Kiers 2021-08-19 20:34:45 +02:00
parent b7792607ff
commit 1dcd49fd0d
1 changed files with 5 additions and 0 deletions

View File

@ -126,6 +126,7 @@ async function handleMarkdown(content)
let title = document.createElement("h1");
title.innerHTML = content.metaData.title;
document.getElementById("post").prepend(title)
document.getElementById("nojs").style.visibility = "hidden";
}
</script>
</head>
@ -135,6 +136,10 @@ readUrl("posts-2021-08-17-serving-blog-content-over-dns-md");
</script>
<div id="post"></div>
<div id="nojs">
<h1>HTML over DNS</h1>
<p>The content of this page is fetched using DNS over HTTP. Since that requires Javascript, please enable that to see the content.</p>
</div>
</body>
</html>