-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
84 lines (67 loc) · 3.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en" ng-app='_200OK'>
<head>
<meta charset="utf-8">
<meta name="description" content="200 OK App">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="css/jquery-ui-1.10.3.custom.min.css" id='jQMnDColor' />
<!-- FontAwesome - http://fortawesome.github.io/Font-Awesome/ -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link href="//api.tiles.mapbox.com/mapbox.js/v1.2.0/mapbox.css" rel="stylesheet" />
<!-- <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> -->
<!-- jQueryMobileCSS - original without styling -->
<link rel="stylesheet" href="css/jquerymobile.css" />
<!-- nativeDroid core CSS -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.css" />
<!-- nativeDroid: Light/Dark -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.light.css" id='jQMnDTheme' />
<!-- nativeDroid: Color Schemes -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.color.blue.css" id='jQMnDColor' />
<link rel="stylesheet" href="css/extras.css" rel="stylesheet">
<script src= "http://code.jquery.com/jquery-1.10.0.min.js"></script>
<script src= "http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular-resource.min.js"></script>
<!-- angular-resource.min.js -->
<script src='//api.tiles.mapbox.com/mapbox.js/v1.3.1/mapbox.js'></script>
<script type="text/javascript" src="./js/leaflet.usermarker.js"></script>
<script type="text/javascript" src="./js/conf_app.js"></script>
</head>
<body ng-controller='attendees'>
<div id="mapPage"
class="ui-page ui-body-b ui-header ui-bar-b ui-header-fixed"
role="banner"
data-role='page'
data-theme='b'>
<div class="ui-header ui-bar-b ui-header-fixed"
data-role="header"
data-position="fixed"
data-theme="b">
<div id="header_icons" data-role='container' >
<img src='./css/img/200ok.png' class='logo'></img>
<a href='http://200ok.us'>Oklahoma's premier web conference</a>
</div>
</div><!-- end header -->
<div id="map_content"
class="ui-content search_map"
role="main" data-role="content" data-theme="b">
</div>
<div data-position="fixed" data-tap-toggle="false" data-role="footer" data-tap-toggle="false" data-theme='b' id="footer-nav">
<div data-role="navbar">
<ul>
<li><a ng-click='show_venue()'>Venue</a></li>
<li><a ng-click='show_user()'>You</a></li>
<li>
<select ng-change='property_selected($event)' ng-model='filter_property' ng-options="u for u in unique_properties" >
<option value="">Find...</option>
</select>
</li>
<li><a ng-click='slide_show($event)'>Start</a></li>
<li><a ng-click='select_winner($event)'>Winnar</a></li>
</ul>
</div>
</div>
</div> <!-- end page -->
</body>
</html>