-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (96 loc) · 3.04 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<!-- -- FSN PLUGIN -- -->
<script data-main="../../fsn/plugin" src="../../fsn/require-jquery.js"></script>
<link rel="stylesheet" type="text/css" href="css/resetter.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- ---------------------- FSN WRAP ------------------- -->
<div id="fsn" style="visibility: hidden">
<!-- ------------------- FSN BAR -------------------- -->
<header>
<div class="bar-body">
<div class="menu">
<nav data-menu="section:all;level:1"></nav>
<div class="clear"></div>
</div>
</div>
</header>
<!-- ------------------ SECTION 1 ------------------- -->
<section data-title="Section one">
<!-- -- PAGE 1 -- -->
<article data-title="Page one" data-link="p11" data-background="#1b75a3">
<div class="content-left">
<h1>Title 1</h1>
<div class="image">
<img src="media/logo.png" width="252" height="208" alt="Fullscreen site navigation" />
</div>
</div>
<div class="content-right">
<p>Section 1 - Page 1</p>
</div>
</article>
<!-- -- PAGE 2 -- -->
<article data-title="Page two" data-link="p12" data-background="#b81a12">
<div class="content-left">
<h1>Title 2</h1>
<div class="image">
<img src="media/logo.png" width="252" height="208" alt="Fullscreen site navigation" />
</div>
</div>
<div class="content-right">
<p>Section 1 - Page 2</p>
</div>
</article>
<!-- -- PAGE 3 -- -->
<article data-title="Page three" data-link="p13" data-background="#197883">
<div class="content-left">
<h1>Title 3</h1>
<div class="image">
<img src="media/logo.png" width="252" height="208" alt="Fullscreen site navigation" />
</div>
</div>
<div class="content-right">
<p>Section 1 - Page 3</p>
</div>
</article>
</section>
<!-- ------------------ SECTION 2 ------------------- -->
<section data-title="Section two">
<!-- -- PAGE 1 -- -->
<article data-title="Page one" data-link="p21" data-background="#db6816">
<div class="content-left">
<h1>Title 3</h1>
<div class="image">
<img src="media/logo.png" width="252" height="208" alt="Fullscreen site navigation" />
</div>
</div>
<div class="content-right">
<p>Section 2 - Page 1</p>
</div>
</article>
<!-- -- PAGE 2 -- -->
<article data-title="Page two" data-link="p22" data-background="#7f33cc">
<div class="content-left">
<h1>Title 3</h1>
<div class="image">
<img src="media/logo.png" width="252" height="208" alt="Fullscreen site navigation" />
</div>
</div>
<div class="content-right">
<p>Section 2 - Page 2</p>
</div>
</article>
</section>
<!-- ------------------ FSN FOOTER ------------------ -->
<footer>
<div class="footer-body">
<p>Content footer</p>
</div>
</footer>
</div>
</body>
</html>