gamja-old/index.html
Simon Ser ca8649c506 Add web app manifest
We'll need this to register protocol handlers.
2021-06-22 10:42:16 +02:00

21 lines
554 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>gamja IRC client</title>
<link rel="stylesheet" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="manifest.json">
</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>