-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (29 loc) · 1012 Bytes
/
index.html
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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Lacuna Expanse</title>
<link rel="apple-touch-icon" href="/favicon.png">
<link rel="icon" href="/favicon.png">
</head>
<body id="body" class="yui-skin-sam">
<div id="nojavascript">
Lacuna Expanse requires Javascript to run. Please enable and reload the page.
</div>
<script id="noJsScript" type="text/javascript">
(function () {
// Remove no script notice.
var nojs = document.getElementById('nojavascript');
if (nojs) {
nojs.parentNode.removeChild(nojs);
}
// Remove this script node as well.
var njs = document.getElementById('noJsScript');
njs.parentNode.removeChild(njs);
})();
</script>
<script type="module" src="/app/load.ts"></script>
</body>
</html>