-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 2.45 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
<!DOCTYPE html> <!-- HTML5 doctype -->
<html lang='en'>
<head>
<meta charset='utf-8'>
<!-- viewport for mobile browser -->
<meta content='width=device-width, minimum-scale=1, maximum-scale=1' name='viewport'>
<title>Feeds</title> <!-- change to project title here -->
<link href='vendors/jquery.mobile-1.3.2.css' rel='stylesheet'>
<link href='app.css' rel='stylesheet'>
</head>
<body>
<div data-role='page' id='root'>
<div data-role='header'>
<h1 style="white-space:normal;">澳門道路情報 Timeline</h1>
<!--
<a class='ui-btn-left' data-role='button' href='#welcome'>說明</a>
<a class='ui-btn-right' data-role='button' href='#setting'>設定</a>
-->
<a id='refreshB' class='ui-btn-right hidden' data-role='button' data-icon='refresh' data-iconpos="notext" style='transform:scale(1.5);'>Refresh</a>
</div>
<div data-role='content' class='bigFont'>
<!-- content here -->
<div id='loginDiv' class='pageCenter'>
<a data-role='button' id='login'><p id='loginButtonM'>Fb login</p></a>
</div>
<div id='userInfo'></div>
</div>
</div>
<div data-role='page' id='setting'>
<div data-role='header' class='bigFont'>
<h1>設定</h1>
<a id='backButton' data-icon='arrow-l' data-rel='back'>返回</a>
<!-- <a class='ui-btn-right' data-role='button' href='#welcome'>Toturial</a> -->
</div>
<div data-role='content' class='pageCenter'>
<!-- content here -->
</div>
</div>
<div data-role='page' id='welcome'>
<div data-role='content'>
<div id='slider' class='swipe'>
<div class='swipe-wrap'>
</div>
</div>
</div>
</div>
<!-- JavaScript at the bottom -->
<script src='vendors/jquery-2.0.3.js'></script>
<script src='vendors/jquery.mobile-1.3.2.js'></script>
<script src='vendors/swipe.js'></script>
<script src='app.js'></script>
<script src='vendors/fbinit.js'></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55111442-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>