-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·75 lines (65 loc) · 2.47 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
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQueryMoboile example</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<!--<script src="jquery1.8.3.js"></script>
<script src="jquery.mobile-1.3.0.min.js"></script>-->
<script src="js/serverProxy.js"></script>
<script src="js/htmlGenerator.js"></script>
<script src="js/userManager.js"></script>
<script src="js/tripbookController.js"></script>
</head>
<body>
<div data-role="page" id="photos">
<header id="header" data-role="header">
<h1>Cars Photos</h1>
</header>
<article data-role="content">
<ul data-role="listview" data-filter="true">
<li>
<a href="#audi">
<h1>Audi</h1>
<img src="../../לימודים/טכנולוגיות%20ווב%20ומוביל%20מתקדמות/tutorial/images/audi.jpg" alt="audi" />
<p>AUDI cars from German</p>
</a>
</li>
<li>
<a href="#honda">
<h1>Hodna</h1>
<img src="../../לימודים/טכנולוגיות%20ווב%20ומוביל%20מתקדמות/tutorial/images/honda.jpg" alt="Honda" />
<p>Honda cars from Japan</p>
</a>
</li>
</ul>
</article>
<footer data-role="footer" data-position="fixed">
<nav data-role="navbar">
<ul >
<li><a href="#home" data-role="button" data-icon="home">Home</a></li>
<li><a href="#photos" data-icon="grid">Photos</a></li>
<li><a href="#about" data-icon="info">About</a></li>
</ul>
</nav>
</footer>
</div>
<div data-role="page" id="feed">
<header data-role="header">
<h1>feed</h1>
<a href="#photos" data-icon="grid" data-iconpos="notext">Photos</a>
</header>
<div id="feedContent"></div>
</div>
<div data-role="page" id="honda">
<header data-role="header">
<h1>Honda</h1>
<a href="#photos" data-icon="grid" data-iconpos="notext">Photos</a>
</header>
<img src="../../לימודים/טכנולוגיות%20ווב%20ומוביל%20מתקדמות/tutorial/images/honda.jpg" class="fullscreen" alt="Honda" />
</div>
</body>
</html>