2022-03-20 08:56:28 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-09-05 09:47:30 +00:00
|
|
|
|
2023-01-08 11:24:12 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2023-01-16 15:45:55 +00:00
|
|
|
<meta name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
2023-01-08 11:24:12 +00:00
|
|
|
<base href="/" />
|
|
|
|
|
2023-01-16 15:45:55 +00:00
|
|
|
<title>SilverBullet</title>
|
2023-01-08 11:24:12 +00:00
|
|
|
<script>
|
|
|
|
Deno = {
|
|
|
|
args: [],
|
|
|
|
build: {
|
|
|
|
arch: "x86_64",
|
|
|
|
},
|
|
|
|
env: {
|
|
|
|
get(key) {
|
|
|
|
// return undefined;
|
2022-10-10 12:50:21 +00:00
|
|
|
},
|
2023-01-08 11:24:12 +00:00
|
|
|
},
|
|
|
|
errors: {
|
|
|
|
AlreadyExists: class extends Error { },
|
2022-07-22 11:44:28 +00:00
|
|
|
}
|
2023-01-08 11:24:12 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2023-02-28 09:07:20 +00:00
|
|
|
</style>
|
|
|
|
<style id="custom-styles">
|
|
|
|
|
2023-01-08 11:24:12 +00:00
|
|
|
</style>
|
|
|
|
<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.png" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-01-16 15:45:55 +00:00
|
|
|
<div id="sb-root">
|
|
|
|
</div>
|
2023-01-08 11:24:12 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|