-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (35 loc) · 1006 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
39
40
41
42
43
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<title>Ocean Scanner</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<script src="js/systemjs/dist/system.js"></script>
<script>
// Required for github-pages
if (document.URL.indexOf('github.io') !== -1) {
console.log('We are on github pages...')
SystemJS.config({
baseURL: '/Alakajam2'
});
// Used to hide dev FPS counter
document.isProduction = true
};
SystemJS.import('js/welcome.js');
</script>
<!-- Absolutely positionned DOM background div -->
<div id="root">
<!-- Hidden as soon as the main game loop starts -->
<div id="loader">
<div>Game is Loading...</div>
</div>
<!-- The welcome page -->
<div id="welcome"></div>
<!-- In-game informations -->
<div id="infozone"></div>
</div>
</body>
</html>