-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache-detail.html
72 lines (70 loc) · 3.66 KB
/
cache-detail.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>
</title>
<link rel="stylesheet" href="https://s3.amazonaws.com/codiqa-cdn/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" href="my.css" />
<script src="https://s3.amazonaws.com/codiqa-cdn/jquery-1.7.2.min.js"></script>
<script src="Scripts/FBIntegration.js"></script>
<script src="https://s3.amazonaws.com/codiqa-cdn/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBBj-LI45_3msjM7hqaAUl1hEj0J8fgidw&sensor=true"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js" type="text/javascript" ></script>
<script src="ui/jquery.ui.map.full.min.js" type="text/javascript"></script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="cache-detail">
<div id="cache-detail-header" data-theme="a" data-role="header">
<a data-role="button" data-direction="reverse" data-transition="slide" href="caches.html" data-icon="arrow-l" data-iconpos="left" class="ui-btn-left">
Caches
</a>
<h3>
<span id="cache-name">Cache Name Goes Here!</span>
</h3>
</div>
<div data-role="content">
<span id="static-map"></span>
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
Last found on: <span id="last-found">XXX</span>
</li>
<li data-theme="c">
Difficulty: <span id="difficulty">XXX</span>
</li>
<li data-theme="c">
<a href="found-by.html" data-transition="slide">
Found by (<span id="found-by-count">Count</span>)
</a>
</li>
<li data-theme="c">
<a href="hints.html" data-transition="slide">
Hints (<span id="hints-count">Count</span>)
</a>
</li>
<li data-theme="c">
<a href="to-find.html" data-transition="slide">
To Find (<span id="to-find-count">Count</span>)
</a>
</li>
<li data-theme="c">
<a href="report-problem.html" data-transition="slide">
Report a problem (<span id="report-problem-count">Count</span>)
</a>
</li>
<li data-theme="c">
<a href="#" onclick="publishStory();">Publish Achievement</a>
</li>
</ul>
<a data-role="button" data-transition="slide" id="find-geocache-button" href="gps-data.html">Find Geocache</a>
<a data-role="button" data-transition="slide" id="GoogleMap-button" href="finder_google_map.html">Google Map Finder</a>
<a data-role="button" data-theme="a" data-transition="slide" id="cache-found-button" href="#">Found it!</a>
</div>
</div>
</body>
</html>