0365673c41
Initial checkin of mobile "native" app
47 lines
929 B
HTML
47 lines
929 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<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>
|
|
<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>
|
|
<div id="sb-root"></div>
|
|
</body>
|
|
|
|
</html> |