gamja/index.html
Simon Ser 0c79b9a3ee
Add <noscript> message
Avoids a blank page when JS is disabled.
2020-06-24 15:43:19 +02:00

19 lines
435 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>gamja IRC client</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<noscript>
<p>Unfortunately gamja requires JavaScript. Please enable it!</p>
</noscript>
<script type="module">
import { html, render } from "/lib/index.js";
import App from "/components/app.js";
render(html`<${App}/>`, document.body);
</script>
</body>
</html>