1
0
silverbullet/web/index.html

44 lines
925 B
HTML
Raw Normal View History

<!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;
},
},
2022-10-13 13:16:18 +00:00
errors: {
AlreadyExists: class extends Error {},
}
};
</script>
2022-07-22 11:44:28 +00:00
<style>
html,
body {
margin: 0;
height: 100%;
padding: 0;
width: 100%;
overflow: hidden;
}
</style>
<link rel="stylesheet" href="/main.css" />
<script type="module" src="/client.js"></script>
<link rel="manifest" href="/manifest.json" -->
2022-12-09 08:14:40 +00:00
<link rel="icon" type="image/x-icon" href="/favicon.png" />
</head>
<body>
2022-07-22 11:44:28 +00:00
<div id="sb-root"></div>
</body>
</html>