-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbus.html
59 lines (46 loc) · 1.87 KB
/
mbus.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
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>MBus</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta charset="UTF-8">
<script src="components_full/bower_components/platform/platform.js"></script>
<link rel="stylesheet" type="text/css" href="busStyle.css">
<link href='https://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
<link rel="import" href="stop-card.html">
<link rel="import" href="components_full/bower_components/paper-fab/paper-fab.html">
<link rel="import" href="components_full/bower_components/core-icons/iconsets/icons.html">
<link rel="import" href="components_full/bower_components/core-header-panel/core-header-panel.html">
<link rel="import" href="components_full/bower_components/core-toolbar/core-toolbar.html">
<meta name="mobile-web-app-capable" content="yes">
</head>
<body>
<core-header-panel>
<div class="core-header">
<core-toolbar>
<div id="title-div">
<h1 id="title">MBus</h1>
</div>
<div id="locate-div">
<button type="button" id="locate">
<core-icon size="35px" icon="gps-fixed"></core-icon>
</button>
</div>
</core-toolbar>
</div>
<div class="content">
<paper-fab id="refresh" icon="refresh"></paper-fab>
<!-- Cards for Stops -->
<div id="stop-div"></div>
<!--Button to Load Additional Stops-->
<button id="more_btn" type="button" hidden>
<core-icon id="elip" size="50px" icon="more-horiz"></core-icon>
</button>
</div>
</core-header-panel>
<!--Scripts-->
<!--<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>-->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/busData.min.js"></script>
</body>
</html>