-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathlaunchpad.html
46 lines (40 loc) · 1.13 KB
/
launchpad.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
<!DOCTYPE html>
<html>
<head>
<title> Welcome </title>
<link rel="stylesheet" href="css/play.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YSHQCXP78J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YSHQCXP78J');
</script>
</head>
<style>
body, html {
height: 100%;
}
body {
font-family: monospace;
font-weight: bold;
font-size: 20px;
margin: 0;
}
</style>
<body>
<div class="player-style">
<div id='game'></div>
</div>
<script src="data/loadGame.js"></script>
<script type='text/javascript'>
EJS_player = '#game';
EJS_core = coreName;
EJS_gameUrl = fileName;
EJS_pathtodata = 'data/';
EJS_DEBUG_XX = true;
</script>
<script src="data/loader.js"></script>
</body>
</html>