-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 1.94 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
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<link href="kendo/styles/kendo.mobile.all.min.css" rel="stylesheet" />
<link href="styles/main.css" rel="stylesheet" />
<link href="styles/artversity.css" rel="stylesheet" />
<script src="cordova.js"></script>
<script src="kendo/js/jquery.min.js"></script>
<script src="kendo/js/kendo.mobile.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true"></script>
<script src="scripts/view_performance.js"></script>
<script src="scripts/view_image.js"></script>
<script src="scripts/map.js"></script>
<script src="scripts/tag.js"></script>
<script src="scripts/media.js"></script>
<script src="scripts/nearby.js"></script>
<script src="scripts/app.js"></script>
</head>
<body>
<div id="tabstrip-home"
data-role="view"
data-title="Performances"
data-init="app.mapService.initLocation"
data-show="app.mapService.show"
data-hide="app.mapService.hide"
data-model="app.mapService.viewModel"
data-stretch="true">
<div id="map-canvas" class="map" data-bind="visible: isGoogleMapsInitialized"></div>
<div id="no-map" data-bind="invisible: isGoogleMapsInitialized">
<h3>Location requires internet connection to display the map.</h3>
</div>
</div>
<!--Layout-->
<div data-role="layout" data-id="tabstrip-layout">
<!--Header-->
<div data-role="header">
<div data-role="navbar">
<span data-role="view-title"></span>
</div>
</div>
<!--Footer-->
<div data-role="footer">
<div data-role="tabstrip" id="footer-tabstrip">
<a href="#tabstrip-home" data-icon="home">Performances</a>
<a href="views/nearby.html" data-icon="search">Tag</a>
</div>
</div>
</div>
</body>
</html>