32 lines
777 B
HTML
32 lines
777 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 {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
<script>
|
|
document.documentElement.dataset.theme = localStorage.theme ?? "light";
|
|
console.log("SUPERPU");
|
|
</script>
|
|
<link rel="stylesheet" href="bundle.css" />
|
|
<script src="bundle.js" defer=""></script>
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.0455ef5b.gif" />
|
|
</head>
|
|
<body>
|
|
<div id="sb-root"></div>
|
|
</body>
|
|
</html>
|