-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
40 lines (40 loc) · 1.54 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>Task creator</title>
<script data-main="js/app" src="bower_components/requirejs/require.js"></script>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="bower_components/jGrowl/jquery.jgrowl.css">
<link rel="stylesheet" type="text/css" href="js/lib/jquery-ui-1.11.0.custom/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="js/lib/jquery-ui-1.11.0.custom/jquery-ui.structure.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div id="map-canvas" class="col-sm-9"></div>
<div id="sidebar" class="col-sm-3">
<div id="sidebar-inner">
<form action="#" id="uploader"></form>
<div id="file-handler">
<ul>
</ul>
<button id="export-waypoints" class="btn btn-primary hide pull-right">Export Waypoints</button>
</div>
<div id ="taskboard">
<div id="taskboard-header">
Taskboard
</div>
<div id="taskboard-content">
</div>
</div>
<button id="full-board" class="btn btn-primary hide pull-right">Full Board</button>
<div id="tracks">
</div>
</div>
</div>
</div>
</div>
</body>
</html>