-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.56 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
<!doctype html>
<html>
<head>
<title>Ludum Dare 35 - Ice Wizard</title>
<!-- 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 rel="stylesheet" href="jspm_packages/npm/font-awesome@4.5.0/css/font-awesome.css" >
<link rel="stylesheet" href="styles/styles.css">
<meta charset="utf-8">
</head>
<body>
<header>
<nav class="navbar" role="navigation">
<div class="container">
<p class="navbar-brand">The Coding Couple</p>
</div>
</nav>
</header>
<main>
<div class="container" id="game-canvas">
<span class="fa fa-spinner fa-plus fa-3x fa-fw margin-bottom"></span>
<span class="sr-only">Loading...</span>
</div>
</main>
<footer class="navbar navbar-fixed-bottom">
<div class="container">
<small class="copyright">© 2016 The Coding Couple.</small>
</div>
</footer>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script src="build.js"></script>
<script>
System.import('src/main.js');
</script>
</body>
</html>