-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
103 lines (87 loc) · 3.81 KB
/
app.html
File metadata and controls
103 lines (87 loc) · 3.81 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Juego de TroZos</title>
<meta name="description" content="Juego de conquista basado en geolocalización e influencia social">
<meta name="author" content="Charrosfera DevTeam">
<!-- Mobile viewport optimization http://goo.gl/b9SaQ -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta http-equiv="cleartype" content="on">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- For iPhone 4 with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/images/icon@2x.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/images/icon-72.png">
<link rel="apple-touch-icon-precomposed" href="assets/images/icon.png">
<link rel="apple-touch-startup-image" href="assets/images/default.png">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="./lungo.js/lungo-1.2.css">
<link rel="stylesheet" href="./lungo.js/lungo.theme.default.css">
<link rel="stylesheet" href="./assets/stylesheets/style.css">
</head>
<body class="app">
<section id="main">
<header data-title="Juego de trozos"></header>
<article id="perfil">
Datos del usuario
</article>
<article id="notificaciones">
Notificaciones
</article>
<footer class="toolbar with-labels">
<nav>
<a href="#perfil" id="btn-verperfil" class="current" data-target="article" data-icon="user" data-label="Perfil"></a>
<a href="#mapsection" data-target="section" data-icon="chart" data-label="Mapa"></a>
<a href="#notificaciones" data-target="article" data-icon="items" data-label="Notificaciones"></a>
</nav>
</footer>
</section>
<section id="mapsection">
<header data-title="Juego de trozos">
<nav>
<a href="#main" data-target="section" data-icon="left" class="button left"></a>
</nav>
</header>
<article id="map">
</article>
</section>
<section id="viewplace">
<header data-title="Lugar a conquistar">
<nav>
<a href="#mapsection" data-target="section" data-icon="left" class="button left"></a>
</nav>
</header>
<article>
<p id="place-name">name</p>
<p id="place-status">status</p>
<hr />
<p id="user-name">user name</p>
</article>
</section>
<!-- LungoJS (Production mode) -->
<script src="lungo.js/lungo-1.2.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?libraries=places&sensor=false"></script>
<!-- LungoJS - Sandbox App -->
<script src="app/app.js"></script>
<script src="app/data.js"></script>
<script src="app/events.js"></script>
<script src="app/services.js"></script>
<script src="app/view.js"></script>
<script src="assets/javascripts/lungo.sugar.gmap.js"></script>
<script src="assets/javascripts/lungo.sugar.gmap.interface.js"></script>
<script src="assets/javascripts/lungo.sugar.geolocation.js"></script>
<script src="assets/javascripts/foursquare-js-api.js"></script>
<script type="text/javascript">
if (false && App.Data.user.profile()){
window.location.href = "login.html";
}else{
App.Services.user.getProfile(function(){
LUNGO.View.Template.render('#perfil', 'userprofile', App.Data.user.profile());
});
}
</script>
</body>
</html>