-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·33 lines (32 loc) · 1 KB
/
index.html
File metadata and controls
executable file
·33 lines (32 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo-dm.svg" media="(prefers-color-scheme: dark)" />
<link rel="icon" type="image/svg+xml" href="/logo-lm.svg" media="(prefers-color-scheme: light)" />
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="stylesheet" href="/preboot.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex, nofollow" />
<title>ArcOS</title>
<link rel="stylesheet" id="stateCSSLoader" />
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
background-color: #000;
}
</style>
</head>
<body>
<div id="kernelLog"></div>
<main id="main">
<div id="stateLoader" class="fullscreen">.</div>
<div id="appRenderer"></div>
</main>
<script type="module" src="/src/main.ts"></script>
<script src="/preboot.js"></script>
</body>
</html>