-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
52 lines (44 loc) · 1.52 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Hades Space</title>
<!-- section:seo-meta -->
<link rel="icon" href="/favicon/favicon.ico">
<meta property="og:site_name" content="Hades Space">
<meta property="og:type" content="website">
<meta property="og:image" content="/meta-image.png?v=0">
<meta property="og:title" content="Index">
<meta property="og:url" content="index.html">
<meta property="og:description" content="Current information about the game Hades' star">
<script type="text/javascript">
(function(){
let redirect = sessionStorage.redirect;
if (redirect) {
// Nebula update legacy
if (redirect.includes('/Nebula/') && !location.href.includes('/Nebula/')) {
sessionStorage.redirect = redirect.replace('/Nebula/', '/');
return;
}
delete sessionStorage.redirect;
if (redirect != location.href) {
history.replaceState(null, null, redirect);
}
}
})();
</script>
</head>
<body>
<noscript>
<strong>
We're sorry but HadesSpace doesn't work properly without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<!-- built files will be auto injected -->
<div id="app"></div>
<div id="modals"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>