-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (51 loc) · 1.79 KB
/
index.html
File metadata and controls
54 lines (51 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<title>Ghosts at 42nd Street | MiniLD #67</title>
<meta charset="UTF-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
crossorigin="anonymous">
<link href="styles/styles.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="https://github.com/townsean/mini-ld-67">
<!-- <span><img alt="Brand" src="/assets/the_coding_couple.png"></span>-->Ghosts at 42nd Street | MiniLD #67
</a>
</div>
</div>
</nav>
</header>
<main>
<section class="container">
<div id="phaser-canvas">
</div>
<div id="raycast-canvas">
<canvas id='display' width='800' height='600' style='width: 100%; height: 100%;'/>
</div>
</section>
</main>
<footer class="navbar navbar-inverse navbar-fixed-bottom">
<div class="container copyright">
<a href="http://www.thecodingcouple.com/">© The Coding Couple, 2016.</a>
</div>
</footer>
<body>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<!-- Latest compiled and minified JavaScript for Bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous"></script>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script src="dist/build.js"></script>
<script>
System.import('src/main.js');
</script>
</html>