31 lines
745 B
HTML
31 lines
745 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<base href="/" />
|
|
|
|
<title>Silver Bullet</title>
|
|
<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="styles/main.scss" />
|
|
<script type="module" src="boot.ts"></script>
|
|
<link rel="manifest" href="manifest.json" />
|
|
<link rel="icon" type="image/x-icon" href="images/favicon.gif" />
|
|
</head>
|
|
<body>
|
|
<div id="sb-root"></div>
|
|
</body>
|
|
</html>
|