-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.html
179 lines (168 loc) · 5.2 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
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
---
layout: page
title: Home
permalink: /
custom_head_owl: true
custom_head_counterup: true
---
<!-- Slider Start -->
<section id="slider">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-2">
<div class="block">
<h1 class="animated fadeInUp">{{ site.data.home.title }}</h1>
<p class="animated fadeInUp">{{ site.data.home.subtitle }}</p>
</div>
</div>
</div>
</div>
</section>
<!-- Wrapper Start -->
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-12">
<div class="block">
<div class="section-title">
<h2>{{ site.data.home.intro-title }}</h2>
<p>{{ site.data.home.intro-subtitle }}</p>
</div>
{{ site.data.home.intro-body | markdownify }}
</div>
</div><!-- .col-md-7 close -->
<div class="col-md-5 col-sm-12">
<div class="block">
<img src="{{ site.data.home.intro-img }}" alt="Img">
</div>
</div><!-- .col-md-5 close -->
</div>
</div>
</section>
<section id="feature">
<div class="row">
<div class="content col-md-6 col-md-offset-6">
<h2>{{ site.data.home.feature-title }}</h2>
<p>{{ site.data.home.feature-subtitle | markdownify }}</p>
<a href="#" class="btn btn-view-works">Start Planning</a>
</div>
</div>
</section>
<!-- Content Start -->
<section id="testimonial">
<div class="container">
<div class="row">
<div class="section-title text-center">
<h2>{{ site.data.home.testimonial-title }}</h2>
<p>{{ site.data.home.testimonial-subtitle }}</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="block">
<ul class="counter-box clearfix">
<li>
<div class="block">
<i class="fa fa-home"></i>
<h4 class="counter">{{ site.data.home.hotels }}</h4>
<span>Hotels</span>
</div>
</li>
<li>
<div class="block">
<i class="fa fa-beer"></i>
<h4 class="counter">{{ site.data.home.resturants }}</h4>
<span>Resturants</span>
</div>
</li>
<li>
<div class="block">
<i class="fa fa-university"></i>
<h4 class="counter">{{ site.data.home.museums }}</h4>
<span>Museums</span>
</div>
</li>
<li>
<div class="block">
<i class="fa fa-plane"></i>
<h4><span class="counter">{{ site.data.home.minutes }}</span> Minutes</h4>
<span>Drive from the Airport</span>
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="testimonial-carousel">
<div id="testimonial-slider" class="owl-carousel">
<div>
<p><i class="fa fa-quote-left" aria-hidden="true"></i> Shoutout to the {{site.data.business.name}} for
such a great demo. <i class="fa fa-quote-right" aria-hidden="true"></i></p>
<div class="user">
<img src="img/twitter-user-1.jpg" alt="Pepole">
<p><span>Bob Henson</span> via Twitter</p>
</div>
</div>
<div>
<p><i class="fa fa-quote-left" aria-hidden="true"></i> Static sites are security fortresses! <i class="fa fa-quote-right"
aria-hidden="true"></i> </p>
<div class="user">
<img src="img/twitter-user-2.jpg" alt="Pepole">
<p><span>Clay Risro</span> via Twitter</p>
</div>
</div>
<div>
<p><i class="fa fa-quote-left" aria-hidden="true"></i> I love not having a CMS to have to update all the
time. <i class="fa fa-quote-right" aria-hidden="true"></i> </p>
<div class="user">
<img src="img/twitter-user-3.jpg" alt="Pepole">
<p><span>Rose Ray</span> via Twitter</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
{% include call-to-action.html %}
<!-- Service Start -->
<section id="service">
<div class="container">
<div class="row">
<div class="section-title">
<h2>{{ site.data.home.services-title }}</h2>
<p>{{ site.data.home.services-subtitle }}</p>
</div>
</div>
<div class="row ">
{% for item in site.data.services.services %}
<div class="col-sm-6 col-md-3">
<div class="service-item">
<i class="fa {{item.icon}}"></i>
<h4>{{item.title}}</h4>
<p>{{item.body}}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<script>
if (window.netlifyIdentity) {
window.netlifyIdentity.on("init", user => {
if (!user) {
window.netlifyIdentity.on("login", () => {
document.location.href = "/admin/";
});
}
});
}
// Counter up
if ($(".counter").length) {
$('.counter').counterUp({
delay: 10,
time: 1000
});
}
</script>