-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.2 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<style type="text/css">
</style>
</head>
<body>
<!-- JS THIRD -->
<!-- JS THIRD - EmberJS -->
<script src="js/zepto.js"></script>
<script src="js/ht.mobile.nav-1.0.js"></script>
<!-- JS APP -->
<script>
$("document").ready(function (){
HTM.init(
{
startup: "login.html",
// views/pages/*
pages: {
login: "login.html",
main: "main.html"
},
// views/routes/*
routes: {
map: "map.html",
friends: "friends.html",
events: "events.html"
}
}
);
});
</script>
</body>
</html>