-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (68 loc) · 2.31 KB
/
index.html
File metadata and controls
79 lines (68 loc) · 2.31 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
<!DOCTYPE html>
<html>
<head>
<title>AroundMe</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no">
<script src="js/zepto.min.js"></script>
<script src="js/include.js"></script>
<script src="js/heartcode-canvasloader-min-0.9.1.js"></script>
<script src="js/app.js"></script>
<script src="js/ui.js"></script>
<script src="js/tools-geo.js"></script>
<link rel="stylesheet" href="wininup.css" />
<link rel="stylesheet" href="app.css" />
<!--<link rel="stylesheet" href="uiffos/menus-dialogues/required.css" />-->
<link rel="stylesheet" href="uiffos/other/buttons/style.css" />
<link rel="stylesheet" href="uiffos/other/headers/style.css" />
</head>
<body role="application">
<div id="canvasloader-container" class="wrapper"></div>
<section data-role="installer" class="undisplayed">
<div class="centered ">
<p id="install-description">This application is not installable, please run it inside Firefox OS.</p>
<div id="install-button" class="button uppercased clickable undisplayed">
Installer
</div>
</div>
</section>
<!-- <section data-role="content" class="undisplayed">
<h1 class="centered">Liste des stations les plus fréquentées</h1>
<div id="stations"></div>
</section>-->
<!--Templates-->
<section id="templates">
<section role="region" class="template-confirm undisplayed">
<div role="dialog">
<div class="center">
<h3>Confirmation</h3>
<p>Are you sure you want to delete this contact?</p>
</div>
<menu data-items="2">
<button class="cancel-button">Cancel</button>
<button class="confirm-button negative">Delete</button>
</menu>
</div>
</section>
<section role="region" class="template-header undisplayed">
<header>
<h1>Messages</h1>
</header>
</section>
<section class="template-info undisplayed">
<article class="template-info-article">
<h1></h1>
<p>Type: <span class="tplinfo-type"></span></p>
<p>Distance: <span class="tplinfo-distance"></span></p>
<p>Entrances: <span class="tplinfo-entrances"></span></p>
</article>
</section>
</section>
<section>
<div id="map_canvas"></div>
</section>
<script>
var appInstance = new App();
</script>
</body>
</html>