-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.88 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<title>Adventure Engine</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="Scripts/jquery-3.1.0.min.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
<script src="Scripts/base64.js"></script>
<script src="app/adventure.bundle.js"></script>
<script type='text/javascript'>
var oldIE = false;
</script>
<!--[if lt IE 9]>
<script type="text/javascript">oldIE = true;</script>
<![endif]-->
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<link href="Content/bootstrap-theme.min.css" rel="stylesheet" />
<link href="Content/font-awesome.min.css" rel="stylesheet" />
<link href="Content/adventure.css" rel="stylesheet" />
</head>
<body>
<div class="wrapper text-center">
<h1>Adventure Engine</h1>
<button id="startGameBtn" type="button" class="btn btn-primary btn-lg">Start Adventure</button>
</div>
<div class="modal" id="devGameModal" tabindex="-1" role="dialog" aria-labelledby="devGameModalLabel" aria-hidden="true">
<div class="modal-dialog game-modal">
<div class="modal-content">
<div class="modal-body">
<div id="gameWrapper">
<div id="saveNotify">saved.</div>
<div id="gameContent">
<div id="gameMain"></div>
<div id="gameInput">
<i class="fa fa-chevron-right"></i> <input type="text" id="commandTxt" autofocus />
</div>
<div id="gameFooter"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>