-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-default.html
42 lines (36 loc) · 1.22 KB
/
index-default.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>
<head>
<!--<base href="http://www.server.com/app-name/path/">-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="scripts/jquery.mobile-1.0.1/jquery.mobile-1.0.1.css" rel="stylesheet" type="text/css" />
<script type='text/javascript' src="scripts/jquery-1.7.2.min.js"></script>
<script type='text/javascript' src="scripts/jquery.mobile-1.0.1/jquery.mobile-1.0.1.min.js"></script>
<script type='text/javascript' src="scripts/knockout-2.0.0.js"></script>
</head>
<body>
<!-- First Page -->
<div data-role="page" id="home" data-title="Home">
<div data-role="header">
<h1>Welcome Home</h1>
</div>
<div data-role="content">
<a href="#contact" data-role="button">Contact Us</a>
</div>
</div>
<!-- Second Page -->
<div data-role="page" id="contact" data-title="Contact">
<div data-role="header">
<h1>Contact Us</h1>
</div>
<div data-role="content">
Contact information...
</div>
<script type="text/javascript">
/* Page specific scripts here */
</script>
</div>
</body>
</html>