-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·78 lines (71 loc) · 3.29 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
<!--
Club Camper Furgovw's Mobile App
Copyright (C) 2012, Club Camper Furgovw (furgovw.org)
Created by Javier Montes (@mooontes - http://mooontes.com)
-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/furgovw.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.2.0.min.css" />
<title>Furgovw Furgoperfectos</title>
</head>
<body>
<div data-role="page" id="home">
<div data-role="header" data-position="fixed">
<h1>Furgovw Furgoperfectos</h1>
</div>
<div data-role="content">
<img id="fvw_logo" src="img/logo_furgovw.png">
<div id="buttons">
<a id="fvw_user_location_button" data-role="button" data-icon="grid" data-iconpos="left" href="#">Cargando ubicación...</a>
<a id="fvw_select_location_button" href="#map" data-role="button" data-icon="search" data-iconpos="notext"></a>
</div>
</div>
</div>
<div id="map" data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<h1>furgovw.org</h1>
</div>
<div id="map_content" data-role="content">
<div id="map_container"></div>
</div>
</div>
<div id="spots-list" data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<h1>furgovw.org</h1>
</div>
<div data-role="content">
<ul id="spots_list_list" data-role="listview">
</ul>
</div>
</div>
<div id="spot-detail" data-id="" data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<h1>furgovw.org</h1>
</div>
<div data-role="content">
<h1 id="fvw_spot_name"></h1>
<h3 id="fvw_spot_distance"></h3>
<img id="fvw_spot_picture">
<a id="fvw_spot_forum_link" data-role="button" target="_blank"></a>
<p id="fvw_spot_author"></p>
<p id="fvw_spot_msg_body"></p>
</div>
</div>
<script type="text/javascript" src="cordova-2.1.0.js"></script>
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/jquery.jsonp.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.2.0.min.js"></script>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/furgovw.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>