-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·62 lines (55 loc) · 2.29 KB
/
index.html
File metadata and controls
executable file
·62 lines (55 loc) · 2.29 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="SeoToaster">
<!--<meta name="copyright" content="(c)"> -->
<meta http-equiv="Reply-to" content="support@seosamba.com">
<title>Radar</title>
<!-- Mobile Specific Metas -->
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<!-- JS -->
<script src="cordova.js"></script>
<script src="js/system/mustache.min.js"></script> <!-- Mustache http://mustache.github.io/-->
<script src="js/system/zepto.min.js"></script>
<script src="js/system/quo.min.js"></script>
<script>
jQuery = Zepto;
</script>
<script src="js/plugin/jquery.knob.js"></script> <!-- Knob http://anthonyterrien.com/knob/ -->
<!--<script src="js/plugin/fastclick.js"></script> <!– FastClick https://github.com/ftlabs/fastclick–>-->
<script src="js/system/flexkit.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/radar.js"></script>
<!-- CSS -->
<link href="css/flexkit.css" rel="stylesheet" media="screen">
<link href="css/animate.css" rel="stylesheet" media="screen">
</head>
<body>
<main></main>
</body>
<script type="text/html" id="tmp_user-list">
<ul class="user-list list-bordered m0px">
{{#users}}
<li class="white-bg mb0-25em p5px clearfix" data-user-id="{{id}}">
<img class="fl-left mr1em" src="{{photo.thumb}}" alt="{{name}}" width="50" height="50"/>
<h4 class="m0px">{{name}} ({{age}})</h4>
<div>Distance: {{coordinates.distance}}</div>
</li>
{{/users}}
</ul>
</script>
<script type="text/html" id="tmp_radar">
<div id="sonar" class="mb1em">
<i>
<i><i></i></i>
</i>
<div class="line"></div>
<div id="guides"></div>
</div>
</script>
<script src="js/pagesList.js"></script>
<script src="js/usersList.js"></script>
</html>