-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexoriginal.html
258 lines (232 loc) · 9.22 KB
/
indexoriginal.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Vitality</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Font Awesome -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Default Fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,100,200,300,600,500,700,800,900' rel='stylesheet' type='text/css'>
<!-- Vitality Theme CSS -->
<link href="css/vitality-red.css" rel="stylesheet" type="text/css">
<!-- IE8 support for HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- Landing Page Demo Styles -->
<style>
.demo-header {
text-align: center;
background: url('img/agency/backgrounds/bg-header.jpg') no-repeat center center scroll;
color: #fff;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
padding: 100px 0;
}
.preview-pane {
text-align: center;
margin-bottom: 30px;
padding: 15px;
}
.preview-pane hr {
max-width: 50px;
margin: 5px auto;
}
.preview-pane a {
color: #222;
}
.preview-pane a:focus {
outline: none;
}
.preview-pane a img {
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
}
.preview-pane a:hover img {
opacity: 0.5;
}
.label-primary {
background-color: #EF4035;
}
.cta-list {
margin-top: 30px;
}
</style>
</head>
<body>
<div class="demo-header">
<div class="demo-header-content">
<div class="container">
<h1>Welcome to Vitality!</h1>
<hr class="colored">
<p>All of the sample layouts are included with your download. Select an example layout below to preview!</p>
<ul class="list-inline cta-list">
<li class="list-inline-item">
<a href="#previews" class="btn btn-primary page-scroll-demo">View Demos</a>
</li>
<li class="list-inline-item">
<a href="docs/index.html" class="btn btn-primary page-scroll-demo">Documentation</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container pt-5" id="previews">
<div class="row">
<div class="col-md-4">
<div class="preview-pane">
<a href="agency.html">
<img src="img/demo/screenshot-agency.png" class="img-fluid mx-auto mb-4" alt="">
<h3>Agency</h3>
<hr class="colored">
<p class="text-muted">Ideal For:</p>
<ul class="list-unstyled text-muted">
<li>
<em>Agencies</em>
</li>
<li>
<em>Businesses</em>
</li>
<li>
<em>Consultants</em>
</li>
</ul>
</a>
</div>
</div>
<div class="col-md-4">
<div class="preview-pane">
<a href="creative.html">
<img src="img/demo/screenshot-creative.png" class="img-fluid mx-auto mb-4" alt="">
<h3>Creative</h3>
<hr class="colored">
<p class="text-muted">Ideal For:</p>
<ul class="list-unstyled text-muted">
<li>
<em>Personal Portfolios</em>
</li>
<li>
<em>Freelancers</em>
</li>
<li>
<em>Photographers</em>
</li>
</ul>
</a>
</div>
</div>
<div class="col-md-4">
<div class="preview-pane">
<a href="culinary.html">
<img src="img/demo/screenshot-culinary.png" class="img-fluid mx-auto mb-4" alt="">
<h3>Culinary</h3>
<hr class="colored">
<p class="text-muted">Ideal For:</p>
<ul class="list-unstyled text-muted">
<li>
<em>Restaurants</em>
</li>
<li>
<em>Bakeries</em>
</li>
<li>
<em>Caterers</em>
</li>
</ul>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="preview-pane">
<a href="fashion.html">
<img src="img/demo/screenshot-fashion.png" class="img-fluid mx-auto mb-4" alt="">
<h3>Fashion</h3>
<hr class="colored">
<p class="text-muted">Ideal For:</p>
<ul class="list-unstyled text-muted">
<li>
<em>Boutiques</em>
</li>
<li>
<em>Designers</em>
</li>
<li>
<em>Retail Stores</em>
</li>
</ul>
</a>
</div>
</div>
<div class="col-md-4">
<div class="preview-pane">
<a href="legal.html">
<img src="img/demo/screenshot-legal.png" class="img-fluid mx-auto mb-4" alt="">
<h3>Legal</h3>
<hr class="colored">
<p class="text-muted">Ideal For:</p>
<ul class="list-unstyled text-muted">
<li>
<em>Lawyers</em>
</li>
<li>
<em>Law Firms</em>
</li>
<li>
<em>Consultants</em>
</li>
</ul>
</a>
</div>
</div>
<div class="col-md-4">
<div class="preview-pane">
<a href="video.html">
<img src="img/demo/screenshot-video.png" class="img-fluid mx-auto mb-4" alt="">
<h3>Video</h3>
<hr class="colored">
<p class="text-muted">
<em>An example of the agency theme with a video background for the header. A video background can be applied to any other theme!</em>
</p>
</a>
</div>
</div>
</div>
</div>
<!-- Core Scripts -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin Scripts -->
<script src="vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="vendor/owl-carousel/owl.carousel.js"></script>
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="vendor/formstone/core.js"></script>
<script src="vendor/formstone/transition.js"></script>
<script src="vendor/formstone/background.js"></script>
<script src="vendor/mixitup/jquery.mixitup.js"></script>
<script src="vendor/wow/wow.min.js"></script>
<!-- Vitality Theme Scripts -->
<script src="js/vitality.js"></script>
<script>
// Smooth Scrolling: Smooth scrolls to an ID on the current page.
$('a.page-scroll-demo').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: ($($anchor.attr('href')).offset().top)
}, 1250, 'easeInOutExpo');
event.preventDefault();
});
</script>
</body>
</html>