/ index.html
index.html
 1  <!doctype html>
 2  <html lang="en">
 3      <head>
 4         <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
 5         <meta name="referrer" content="origin"/>
 6         <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
 7         <link rel="stylesheet" type="text/css" href="style.css"/>
 8         <link rel="shortcut icon" href="favicon.ico"/>
 9         <link rel="shortcut icon" href="favicon.svg" type="image/x-icon"/>
10         <title>Hacker News</title>
11         <script type="module">
12            import init, { main } from './pkg/hackernews_sauron.js';
13            async function start() {
14              await init().catch(console.err);
15              await main(``).catch(console.err);
16            }
17            start();
18         </script>
19      </head>
20      <body>
21      </body>
22  </html>