mirror of
https://github.com/adoyle0/thaw.git
synced 2025-03-14 06:29:49 -04:00
31 lines
848 B
HTML
31 lines
848 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Thaw UI</title>
|
||
|
<link
|
||
|
rel="shortcut icon"
|
||
|
href="/thaw/favicon.ico"
|
||
|
type="image/x-icon"
|
||
|
/>
|
||
|
<link rel="stylesheet" href="/thaw/index.css" />
|
||
|
|
||
|
<link
|
||
|
rel="preload"
|
||
|
href="/thaw/demo_bg.wasm"
|
||
|
as="fetch"
|
||
|
type="application/wasm"
|
||
|
crossorigin=""
|
||
|
/>
|
||
|
<link rel="modulepreload" href="/thaw/demo.js" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<script type="module">
|
||
|
import init from "/thaw/demo.js";
|
||
|
init("/thaw/demo_bg.wasm");
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|