-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·83 lines (69 loc) · 3.01 KB
/
index.html
File metadata and controls
executable file
·83 lines (69 loc) · 3.01 KB
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
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>HTML Magazine App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-title" content="HMA">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><!-- Should be 'black', but broken in iOS7+ -->
<link rel="apple-touch-icon" href="apple-touch-icon-precomposed.png">
<link rel="stylesheet" href="css/hma.css">
<!-- User Styles -->
<link rel="stylesheet" href="css/normalize.min.css">
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<div id="app-wrapper" class="app-container">
<div class="navigation">
<header>
<a href="#" class="btn-home">Home</a>
</header>
<footer>
<a href="#" class="btn-pg-selector">Drag Page</a>
</footer>
</div>
<section>
<!-- Page title content -->
<h1>Title</h1>
</section>
<section>
<!-- Index page content -->
<h1>Index</h1>
<ul>
<li><a href="#linked_page_id_3">Go to Section 1 -></a></li>
<li><a href="#linked_page_id_5">Go to Section 2 -></a></li>
</ul>
</section>
<section id="linked_page_id_3">
<!-- Page 1 content -->
<h1>1</h1>
</section>
<section id="linked_page_id_5">
<section class="sub-section">
<!-- Page 2 sub section 1 -->
<h1>2A</h1>
</section>
<section class="sub-section">
<!-- Page 2 sub section 2 -->
<h1>2B</h1>
</section>
</section>
<!-- Enable orientation notice (alerts or error messages when using an undesired orientation) -->
<div class="orientation-notice portrait"><p><strong>Please Rotate Your Device</strong></p></div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
<!-- HTML Magazine App JS -->
<script src="js/hma-0.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#app-wrapper').HMA();
});
</script>
</body>
</html>