-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-blog.html
496 lines (493 loc) · 30.3 KB
/
single-blog.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Jowel | Personal Portfolio</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<!-- all css here -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!--All css plugin here-->
<link rel="stylesheet" href="css/include.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
You are using an outdated browser. Please <a href="http://browsehappy.com/">upgrade your browser</a>
<![endif]-->
<!--Preloader-->
<div id="fakeLoader"></div>
<!-- Add your site or application content here -->
<div class="wrapper single-blog-area">
<header class="header-area header-sticky">
<div class="header-area-inner">
<div class="header-top">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="logo">
<a href="index.html"><img src="img/logo/logo.png" alt=""></a>
</div>
</div>
<div class="col-md-9">
<div class="hire-me-btn hidden-sm hidden-xs">
<a href="#" class="modal-view" data-toggle="modal" data-target="#hireModal">hire me</a>
</div>
<div class="hire-me-btn hidden-lg hidden-md">
<a href="#" class="modal-view" data-toggle="modal" data-target="#hireModal"><i class="fa fa-user-plus"></i></a>
</div>
<div class="main-menu navbar-collapse hidden-sm hidden-xs">
<ul class="nav">
<li class="active smoth-scroll"><a href="index.html">home</a></li>
<li class="smoth-scroll"><a href="#about">about</a></li>
<li class="smoth-scroll"><a href="#service">service</a></li>
<li class="smoth-scroll"><a href="#works">works</a></li>
<li class="smoth-scroll"><a href="#reviews">reviews</a></li>
<li class="smoth-scroll"><a href="#blog">blog</a></li>
<li class="smoth-scroll"><a href="#contact">contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile menu start -->
<div class="mobile-menu-area hidden-lg hidden-md">
<div class="container">
<div class="col-md-12">
<nav id="dropdown">
<ul class="nav">
<li class="active smoth-scroll"><a href="index.html">home</a></li>
<li class="smoth-scroll"><a href="#about">about</a></li>
<li class="smoth-scroll"><a href="#service">service</a></li>
<li class="smoth-scroll"><a href="#works">works</a></li>
<li class="smoth-scroll"><a href="#reviews">reviews</a></li>
<li class="smoth-scroll"><a href="#blog">blog</a></li>
<li class="smoth-scroll"><a href="#contact">contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
<!-- Mobile menu end -->
</div>
</header>
<!-- breadcrumbs-area start -->
<div class="breadcrumbs-area blog-details-bg bg-overlay">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="breadcrumbs-title">
<h2>blog details</h2>
</div>
</div>
</div>
</div>
</div>
<!-- breadcrumbs-area end -->
<div class="breadcrumbs-list">
<div class="container">
<div class="row">
<div class="col-md-12 col-xs-12">
<ul>
<li><a href="index.html">home</a></li>
<li>/ single blog</li>
</ul>
</div>
</div>
</div>
</div>
<div class="singl-blog-area">
<div class="container">
<div class="row">
<div class="col-md-8 col-xs-12">
<div class="blog-details-ara">
<div class="blog-image">
<img src="img/blog/article.jpg" alt="">
</div>
<div class="blog-details-time">
<h4>Business design</h4>
<p>July 19, 2017 / 5 pm</p>
</div>
<div class="blog-details-desc">
<p>This is an outstanding collection of the best portfolio WordPress themes for designers, photographers, artists, creative professionals, creative business and anyone else looking to showcase their work in high quality.All these are responsive premium quality WordPress themes with advanced theme options, dozens of shortcodes,</p>
<p>various portfolio pages and much more to build your own unique and professional website. I tried to select the best themes between hundreds of other themes available.</p>
</div>
<div class="blog-quote">
<p>I hope you will be able to find the theme you were looking for, if not, you might look into other awesome WordPress theme collections. As of now, we have reviewedAs of now, we have reviewedAs of now, we have reviewed over 10,000 themes. </p>
</div>
<p>There are some design tends ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inc dunt ut labore et dolore magna iqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</p>
<div class="blog-author-post">
<div class="author-image">
<a href="#"><img src="img/blog/at1.jpg" alt=""></a>
</div>
<div class="author-desc">
<div class="author-name">
<h4>Jhone dalton</h4>
<p>Author</p>
</div>
<p>Since portfolio themes are among the most popular we have also decided to create another theme collection which is more specific and twice as big as this theme collection.</p>
</div>
</div>
<div class="pos-details-feedback">
<h5>Comments</h5>
<div class="media">
<div class="media-img">
<a href="#"><img src="img/blog/at2.jpg" alt=""></a>
</div>
<div class="media-body">
<h4>Abraham doe</h4>
<p><span>20 min ago</span>
Oshine is a clean and beautiful multi-purpose WordPress theme with 12 unique layouts for you to use. Developers have created 12 unique theme demos that are included with theme </p>
<a href="#">reply</a>
</div>
</div>
<div class="media comment-reply">
<div class="media-img">
<a href="#"><img src="img/blog/at1.jpg" alt=""></a>
</div>
<div class="media-body">
<h4>Shaik sadik</h4>
<p><span>18 min ago</span>
Oshine is a highly customizable WordPress theme and you have access to over 500 different fonts, unlimited color variations, 12 different layout options, 50-page builder shortcode modules and much more. </p>
<a href="#">reply</a>
</div>
</div>
<div class="media">
<div class="media-img">
<a href="#"><img src="img/blog/at1.jpg" alt=""></a>
</div>
<div class="media-body">
<h4>Jhone puik</h4>
<p><span>15 min ago</span>
There are some business lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiu tempor inc ididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrudt </p>
<a href="#">reply</a>
</div>
</div>
</div>
<div class="comment-form-box">
<div class="comment-title">
<h5>Leave a comment</h5>
</div>
<form action="#">
<div class="row">
<div class="form-top">
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="input-filed">
<input type="text" placeholder="Your name">
</div>
</div>
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="input-filed">
<input type="text" placeholder="Email here">
</div>
</div>
</div>
</div>
<div class="form-bottom">
<textarea placeholder="Write here"></textarea>
</div>
<div class="submit-form">
<button type="submit">Publish</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-4 col-xs-12">
<div class="widget-search">
<form action="#">
<input type="text" placeholder="Search...">
<button class="search-btn"><i class="fa fa-search" aria-hidden="true"></i></button>
</form>
</div>
<div class="widget-categories">
<h5>Categories</h5>
<ul class="widget-categories-list">
<li><a href="#">Sparkling Theme<span>1420</span></a></li>
<li><a href="#">Illdy Theme<span>1560</span></a></li>
<li><a href="#">Shapely<span>1240</span></a></li>
<li><a href="#">Support Forum<span>1140</span></a></li>
</ul>
</div>
<div class="widget-recent-post">
<h5>Recent Post</h5>
<div class="recent-post-item">
<div class="recent-post-image">
<a href="#"><img src="img/blog/r-post1.jpg" alt=""></a>
</div>
<div class="recent-post-info">
<div class="recent-post-time">
<h5><a href="single-blog.html">Maridland de Villa</a></h5>
<p>July 30, 2016 / 10 am</p>
</div>
<p>Lorem must explain to you how all this mistaolt</p>
</div>
</div>
<div class="recent-post-item">
<div class="recent-post-image">
<a href="#"><img src="img/blog/r-post2.jpg" alt=""></a>
</div>
<div class="recent-post-info">
<div class="recent-post-time">
<h5><a href="single-blog.html">Maridland de Villa</a></h5>
<p>July 30, 2016 / 10 am</p>
</div>
<p>Lorem must explain to you how all this mistaolt</p>
</div>
</div>
<div class="recent-post-item">
<div class="recent-post-image">
<a href="#"><img src="img/blog/r-post1.jpg" alt=""></a>
</div>
<div class="recent-post-info">
<div class="recent-post-time">
<h5><a href="single-blog.html">Maridland de Villa</a></h5>
<p>July 30, 2016 / 10 am</p>
</div>
<p>Lorem must explain to you how all this mistaolt</p>
</div>
</div>
<div class="recent-post-item">
<div class="recent-post-image">
<a href="#"><img src="img/blog/r-post2.jpg" alt=""></a>
</div>
<div class="recent-post-info">
<div class="recent-post-time">
<h5><a href="single-blog.html">Maridland de Villa</a></h5>
<p>July 30, 2016 / 10 am</p>
</div>
<p>Lorem must explain to you how all this mistaolt</p>
</div>
</div>
</div>
<div class="widget-categories">
<h5>Archive</h5>
<ul class="widget-categories-list">
<li><a href="#">August 2017</a></li>
<li><a href="#">june 2016</a></li>
<li><a href="#">may 2015</a></li>
<li><a href="#">August 2014</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="contact" class="contact-area">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="header-title text-center white-c">
<h2>contact</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration, ut labore et lorna aliquatd minimam, quis nostrud exercitation.</p>
</div>
</div>
</div>
<div class="row">
<div class="contact-form-area">
<div class="contact-info">
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="contact-form">
<div class="row">
<form id="contact-form" action="email.php" method="post">
<div class="col-md-6 col-sm-6">
<input name="name" required="required" type="text" placeholder="FirstName">
</div>
<div class="col-md-6 col-sm-6">
<input name="lastname" required="required" type="text" placeholder="LastName">
</div>
<div class="col-md-6 col-sm-6">
<input name="email" required="required" type="text" placeholder="Email">
</div>
<div class="col-md-6 col-sm-6">
<input name="subject" required="required" type="text" placeholder="Subject">
</div>
<div class="col-md-12 col-sm-12">
<textarea name="message" placeholder="Message"></textarea>
<button type="submit">Send request</button>
</div>
</form>
<p class="form-messege"></p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="google-map-area">
<!-- Map Section -->
<div id="contacts" class="map-area">
<div id="googleMap" style="width:100%;height:330px;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="contact-info-area fix">
<div class="col-sm-4 col-md-4">
<div class="single-socal-contact">
<div class="contact-icon">
<i class="fa fa-phone"></i>
</div>
<div class="contact-text">
<p>+975497166</p>
<p>+975458905</p>
</div>
</div>
</div>
<div class="col-sm-4 col-md-4">
<div class="single-socal-contact">
<div class="contact-icon">
<i class="fa fa-envelope"></i>
</div>
<div class="contact-text">
<p>johndon41@gmail.com</p>
<p>johndon52@gmail.com</p>
</div>
</div>
</div>
<div class="col-sm-4 col-md-4">
<div class="single-socal-contact">
<div class="contact-icon">
<i class="fa fa-map-marker"></i>
</div>
<div class="contact-text">
<p>198 West 21th Street,<br> +Suite 721 New York NY 10016</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- contact-area end -->
<!-- footer-area start -->
<div class="footer-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="socail-icon text-center">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://plus.google.com/" target="_blank"><i class="fa fa-google-plus"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://www.youtube.com/" target="_blank"><i class="fa fa-youtube-play"></i></a>
</div>
<p>copyright © <a href="#">Theme-fair</a> 2017 All rights reserved.</p>
</div>
</div>
</div>
</div>
<!-- footer-area end -->
<!-- modal-area start -->
<div id="quickview-wrapper">
<!-- Modal -->
<div class="hiremodal-main modal fade" id="hireModal" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<span class="close" data-dismiss="modal">×</span>
<h2>HAVE A PROJECT?</h2>
<p>I’m ready to help you. You just type details below, and/or send us a file.</p>
</div>
<div class="modal-body">
<div class="modal-product">
<div class="hire-contact-form">
<form action="#">
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-6 col-sm-6 ">
<input type="text" placeholder="Name">
</div>
<div class="col-md-6 col-sm-6">
<input type="text" placeholder="Your Email...">
</div>
<div class="col-md-6 col-sm-6">
<input type="text" placeholder="Project Title...">
</div>
<div class="col-md-6 col-sm-6">
<select id="ui-id-1" class="bg-fa-caret-down SelectMenu" name="category">
<option value="">-Select Case Category-</option>
<option value="example">Example Category</option>
</select>
</div>
<div class="col-md-6 col-sm-6">
<input class="date-picker" type="text" placeholder="-Estimate Date-">
</div>
<div class="col-md-6 col-sm-6">
<input type="text" placeholder="-Budget-">
</div>
<div class="col-md-12 col-sm-12">
<textarea name="message" rows="9" class="valid" placeholder="YourMessage..."></textarea>
<div class="row">
<div class="col-md-4 col-sm-4">
<label for="fileUpload">
<i class="fa fa-paperclip"></i>
Attach File
</label>
<input id="fileUpload" name="attachment" type="file">
</div>
<div class="col-md-8 col-sm-8">
<div class="hier-send-btn">
<a href="#">send offer </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END Modal -->
</div>
<!-- modal-area end -->
</div>
<!-- Google Map js -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAj9b_nyz33KEaocu6ZOXRgqwwUZkDVEAw"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>
function initialize() {
var mapOptions = {
zoom: 15,
scrollwheel: false,
center: new google.maps.LatLng(41.451437, -82.167451)
};
var map = new google.maps.Map(document.getElementById('googleMap'),
mapOptions);
var marker = new google.maps.Marker({
position: map.getCenter(),
animation:google.maps.Animation.BOUNCE,
icon: 'img/map-marker.png',
map: map
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<!-- all js here -->
<script src="js/vendor/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.meanmenu.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.parallax-1.1.3.js"></script>
<script src="js/jquery.mixitup.min.js"></script>
<!-- mail js -->
<script src="js/email.js"></script>
<!-- plugins JS -->
<script src="js/plugins.js"></script>
<!-- main JS -->
<script src="js/main.js"></script>
</body>
</html>