-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.06 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A simple world editor for Zorkish">
<meta name="author" content="Geordie Hall">
<title>Zorkish World Editor</title>
<!-- Bootstrap-->
<link href="vendor/css/bootstrap-select.css" rel="stylesheet">
<link href="vendor/css/bootstrap/bootstrap.css" rel="stylesheet"><!-- 3.0 -->
<!-- Our styles-->
<link href="css/screen.css" rel="stylesheet">
<!-- Vendor scripts-->
<script src="vendor/js/underscore.min.js"></script>
<script src="vendor/js/jquery.min.js"></script>
<script src="vendor/js/d3.v3.js"></script>
<script src="vendor/js/filesaver.js"></script>
<script src="vendor/js/bootstrap-select.js"></script>
<!-- Our scripts-->
<script src="js/index.min.js"></script><script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="work-area">
<div class="file-container">
<input type="file" class="form-control file-open">
</div>
<div data-entities="none" class="text-muted">
<h1>No world is loaded</h1>
<p>Click or drag a world file here</p>
</div>
<div class="debug-console"></div>
</div>
<div class="sidebar disabled">
<div class="sidebar-nav"><a href="#entity" class="selected">Entity</a><a href="#player">Player</a><a href="#world">World</a></div>
<div class="sidebar-panes">
<div data-pane="entity" class="sidebar-pane"></div>
<div data-pane="player" class="sidebar-pane stage-right"></div>
<div data-pane="world" class="sidebar-pane stage-right">
</div>
</div>
</div>
<div class="drop-zone">
<div class="prompt-container">
<div class="prompts">
<h1 class="prompt-drop">Drop file to open</h1>
</div>
</div>
</div>
</body>
</html>