2020-04-24 13:01:02 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2020-06-24 09:43:19 -04:00
|
|
|
<title>gamja IRC client</title>
|
2021-03-02 16:46:48 -05:00
|
|
|
<link rel="stylesheet" href="./style.css">
|
2021-05-26 16:42:35 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-06-14 13:23:03 -04:00
|
|
|
<link rel="manifest" href="manifest.json">
|
2020-04-24 13:01:02 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-06-24 09:43:19 -04:00
|
|
|
<noscript>
|
|
|
|
<p>Unfortunately gamja requires JavaScript. Please enable it!</p>
|
|
|
|
</noscript>
|
2020-06-14 08:50:59 -04:00
|
|
|
<script type="module">
|
2021-03-02 16:46:48 -05:00
|
|
|
import { html, render } from "./lib/index.js";
|
|
|
|
import App from "./components/app.js";
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
|
|
render(html`<${App}/>`, document.body);
|
2020-06-14 08:50:59 -04:00
|
|
|
</script>
|
2020-04-24 13:01:02 -04:00
|
|
|
</body>
|
|
|
|
</html>
|