-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.32 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
<!doctype HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>List Reorder</title>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script src="vendor/modernizr.js"></script>
<link rel="stylesheet" href="css/top.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css">
<link rel="stylesheet" href="css/global.css">
</head>
<body>
<div id="ctrAll" class="ctrAll">
<div id="ctrMain" class="ctrMain">
<div id="banner" class="banner">
<button class="closeButton"></button>
<h1>Order Selections</h1>
</div>
<div class="infoArea">
<div id="countSelected" class="countSelected"></div>
<img src="images/hi/informational-medium.png" class="infoImage">
Tap to select
</div>
<div id="moveButtons"></div>
<div id="tableContainer" class="tableContainer"></div>
</div>
<div id="bottomDock" class="bottomDock"></div>
</div>
<script>
System.import('lib/main');
</script>
</body>
</html>