-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·70 lines (37 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' id='viewport' name='viewport' />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Falls App</title>
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/jQueryMobile.css" type="text/css">
<link rel="stylesheet" href="css/style.css?v=1">
<!-- <script src="js/libs/JQuery-v1.6.3.js" type="text/javascript" charset="utf-8"></script>
<script src="js/mylibs/jQueryMobile.js" type="text/javascript" charset="utf-8"></script> -->
<script src="http://code.jquery.com/jquery-1.6.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b3/jquery.mobile-1.0b3.min.js"></script>
<script src="js/libs/iscroll.js" type="text/javascript" charset="utf-8"></script>
<script src="js/script.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<!-- page one -->
<div id="header">
<h1>Falls App</h1>
</div><!-- #header -->
<div data-role="page" id="choose-festival">
<div data-role="content">
<h4>Choose Your Festival Venue</h4>
<a href="no-favs.html" class="button" data-transition="slide">Marion Bay</a>
<a href="no-favs.html" class="button" data-theme="e" data-transition="slide">Lorne</a>
</div><!-- /content -->
</div><!-- /page one -->
<div data-role="footer">
<ul class="footer-nav">
<li id="home"><a href="home.html">HOME</a></li>
<li id="my-tt"><a href="my-tt.html">MY TT</a></li>
<li id="full-tt"><a href="day-select.html">FULL TT</a></li>
</ul>
</div><!-- /footer -->
</body>
</html>