47 lines
1.0 KiB
HTML
47 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<base href="/" />
|
|
|
|
<title>Silver Bullet</title>
|
|
<script>
|
|
Deno = {
|
|
args: [],
|
|
build: {
|
|
arch: "x86_64",
|
|
},
|
|
env: {
|
|
get(key) {
|
|
// return undefined;
|
|
},
|
|
},
|
|
errors: {
|
|
AlreadyExists: class extends Error {},
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
padding: 0;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
<script>
|
|
document.documentElement.dataset.theme = localStorage.theme ?? "light";
|
|
</script>
|
|
<link rel="stylesheet" href="/main.css" />
|
|
<script type="module" src="/client.js"></script>
|
|
<link rel="manifest" href="/manifest.json" -->
|
|
<link rel="icon" type="image/x-icon" href="/favicon.gif" />
|
|
</head>
|
|
<body>
|
|
<div id="sb-root"></div>
|
|
</body>
|
|
</html>
|