-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·83 lines (70 loc) · 3.51 KB
/
index.html
File metadata and controls
executable file
·83 lines (70 loc) · 3.51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Title</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.0-rc.3/dist/css/foundation.min.css" integrity="sha256-b2khkeAav/7kTh0Bs5h1Xw1kqGL56SziJ5zk6bEvnAw= sha384-7nP0F9FVCI9Qg1SfsjHWQd+4ksCAxlF5pibRyPGxwn7NJpu1XuSaOoMh8JHIDSdk sha512-Rcgo7Zj9clxZoGtt4CBj1aEtCL9gBd64nYl3hkKEuWDwtK7hKY6c4D5vL4njDseuz31u1WWSM42SbvYe/3CZYQ==" crossorigin="anonymous">
<link rel="stylesheet" href="assets/stylesheets/normalize.css">
<link rel="stylesheet" href="assets/stylesheets/boilerplate.css">
<link rel="stylesheet" href="assets/stylesheets/main.css">
<link rel="stylesheet" href="vendor/stylesheets/foundation.css">
<!-- TODO use minimized foundation files -->
</head>
<body class="nightmode">
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<div class="grid-container fluid">
<div class="grid-x grid-padding-x">
<div class="large-9 cell">
<h3>Game Title</h3>
<div class="canvas-container">
<canvas id="main-canvas">Your browser does not support HTML5 Canvas.</canvas>
</div>
<div id="canvas-1"></div>
</div>
<div class="large-3 cell">
<div>
FPS: <span id="fps"></span><br>
Time: <span id="total-time"></span><br>
Memory: <span id="memory"></span>
</div>
<hr>
<div id="log"></div>
</div>
</div>
</div>
<!-- Plugins -->
<script src="vendor/javascripts/modernizr-3.6.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="vendor/javascripts/jquery-3.3.1.min.js"><\/script>')</script>
<script src="vendor/javascripts/what-input.js"></script>
<script src="vendor/javascripts/foundation.js"></script>
<!-- Namespace needs to come first -->
<script src="assets/javascripts/namespace.js"></script>
<!-- Rest of the javascript files here -->
<script src="assets/javascripts/canvas.js"></script>
<script src="assets/javascripts/clock.js"></script>
<script src="assets/javascripts/constants.js"></script>
<script src="assets/javascripts/helpers.js"></script>
<script src="assets/javascripts/keyboard.js"></script>
<script src="assets/javascripts/log.js"></script>
<script src="assets/javascripts/resource_engine.js"></script>
<script src="assets/javascripts/settings.js"></script>
<script src="assets/javascripts/statistics.js"></script>
<!-- Keep main last. Only function that actually starts running things -->
<script src="assets/javascripts/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>