-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
752 lines (663 loc) · 49.6 KB
/
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> Coupon | Blog</title>
<meta name="description" content="simple description for your site" />
<meta name="keywords" content="keyword1, keyword2" />
<meta name="author" content="CouponZ" />
<!-- twitter card starts from here, if you don't need remove this section -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@yourtwitterusername" />
<meta name="twitter:creator" content="@yourtwitterusername" />
<meta name="twitter:url" content="http://yourdomain.com/" />
<meta name="twitter:title" content="Your home page title, max 140 char" />
<!-- maximum 140 char -->
<meta name="twitter:description" content="Your site description, maximum 140 char " />
<!-- maximum 140 char -->
<meta name="twitter:image" content="assets/img/twittercardimg/twittercard-144-144.png" />
<!-- when you post this page url in twitter , this image will be shown -->
<!-- twitter card ends here -->
<!-- facebook open graph starts from here, if you don't need then delete open graph related -->
<meta property="og:title" content="Your home page title" />
<meta property="og:url" content="http://your domain here.com" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Your site name here" />
<!--meta property="fb:admins" content="" /-->
<!-- use this if you have -->
<meta property="og:type" content="website" />
<!-- 'article' for single page -->
<meta property="og:image" content="assets/img/opengraph/fbphoto-476-476.png" />
<!-- when you post this page url in facebook , this image will be shown -->
<!-- facebook open graph ends here -->
<!-- desktop bookmark -->
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="assets/img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- icons & favicons -->
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon/favicon.ico" />
<!-- this icon shows in browser toolbar -->
<link rel="icon" type="image/x-icon" href="assets/img/favicon/favicon.ico" />
<!-- this icon shows in browser toolbar -->
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/img/favicon/manifest.json">
<!-- Fallback For IE 9 [ Media Query and html5 Shim] -->
<!--[if lt IE 9]>
<script src="//css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- GOOGLE FONT -->
<link href="http://fonts.googleapis.com/css?family=Cabin:400,700%7CUbuntu:300,400,700" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
<!-- BOOTSTRAP CSS -->
<link rel="stylesheet" href="assets/vendor/bootstrap/css/bootstrap.min.css" media="all" />
<!--owl-->
<link rel="stylesheet" href="assets/vendor/owl-carousel/dist/assets/owl.carousel.min.css" media="all" />
<link rel="stylesheet" href="assets/vendor/owl-carousel/dist/assets/owl.theme.default.min.css" media="all" />
<!-- FONT AWESOME CSS -->
<link rel="stylesheet" href="assets/vendor/font-awesome/css/font-awesome.min.css" media="all" />
<!-- linearicons -->
<link rel="stylesheet" href="assets/vendor/linearicons/webfont/style.css" media="all" />
<!-- animate.css -->
<link rel="stylesheet" href="assets/vendor/animate/animate.min.css" media="all" />
<!-- flatpickr -->
<link rel="stylesheet" href="assets/vendor/flatpickr/flatpickr.min.css" media="all" />
<!-- lity -->
<link rel="stylesheet" href="assets/vendor/lity/lity.min.css" media="all" />
<!-- Bootstrap Slider -->
<link rel="stylesheet" href="assets/vendor/bootstrap-slider/css/bootstrap-slider.min.css" media="all" />
<!-- CUSTOM CSS -->
<link id="cbx-style" rel="stylesheet" href="assets/css/style-default.css" media="all" />
<!-- MODERNIZER -->
<script src="assets/vendor/modernizr/modernizr.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">We are Extreamly sorry, But the browser you are using is probably from when civilization started. Which is way behind to view this site properly. Please update to a modern browser, At least a real browser. </p>
<![endif]-->
<div class="cbx-container">
<!-- SITE CONTENT -->
<!-- Header Part Start -->
<header class="cbx-header">
<!-- Header Top Part Start -->
<div class="cbx-header-top">
<div class="container">
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-4 flo-right-mob">
<!-- Header Top Brand Part Start -->
<div class="cbx-brand">
<a href="index.html">
<img src="assets/img/logo/logo-dark.png" alt="CouponHut" class="img-responsive"
width="164" />
</a>
</div>
<!-- Header Top Brand Part End -->
</div>
<div class="col-md-8 col-sm-10 col-xs-8 pull-right">
<!-- Header Bottom Part Start -->
<div class="cbx-header-bottom">
<div class="row">
<nav class="navbar navbar-default">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed pull-left"
data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"
aria-expanded="false">
Menu
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active">
<a href="index.html">Home </a>
</li>
<li><a href="deals.html">Deals</a></li>
<li>
<a href="stores.html">Stores </a>
</li>
<li><a href="category.html">Categories</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="blog.html">blog</a></li>
<li><a href="submit-deal.html">Submit deal</a> </li>
<li><a href="cart.html"><span class="lnr lnr-cart cart-icon"></span></a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
</div>
</div>
<!-- Header Bottom Part End -->
</div>
</div>
</div>
</div>
<!-- Header Top Part End -->
</header>
<!-- Header Part End -->
<!-- trending stores start -->
<div class="trending-stores-wrapper m-100 padd-container">
<div class="container">
<div class="row">
<div class="row">
<div class="col-md-12">
<div class="section-title-block-banner">
<h1 class="section-title">Blog</h1>
<div class="breadcrumbs">
<span class="first-item">
<a href="index.html">Home</a></span>
<span class="separator">></span>
<span class="last-item">Blog</span>
</div>
</div>
</div>
</div>
<!-- New deal Section Start -->
<div class="new-coupon-wrapper pad">
<div class="row">
<!-- New deal Section Start -->
<div class="new-coupon-wrapper pad">
<div class="container">
<div class="row">
<div class="col-md-3 flo-res" >
<div class="sidebar">
<div class="widget widget_recent_posts">
<h4 class="widget-title">Recent Posts </h4>
<article>
<a href="blog-details.html">
<div class="recent-post-image">
<img
src="assets/img/blog/b1.jpg"
class="attachment-recent-image size-recent-image wp-post-image"
alt="">
</div>
<div class="recent-post-post-header">
<h1 class="sm-post">Makeup and Styling Tips You Wish
Knew Earlier</h1>
<p class="recent-post-meta-extra">September 4, 2015</p>
</div>
</a>
</article>
<article>
<a href="blog-details.html">
<div class="recent-post-image">
<img
src="assets/img/blog/blog01.jpg"
class="attachment-recent-image size-recent-image wp-post-image"
alt="">
</div>
<div class="recent-post-post-header">
<h1 class="sm-post">Makeup and Styling Tips You Wish
Knew Earlier</h1>
<p class="recent-post-meta-extra">September 4, 2015</p>
</div>
</a>
</article>
<article>
<a href="blog-details.html">
<div class="recent-post-image">
<img
src="assets/img/blog/blog02.jpg"
class="attachment-recent-image size-recent-image wp-post-image"
alt="">
</div>
<div class="recent-post-post-header">
<h1 class="sm-post">Makeup and Styling Tips You Wish
Knew Earlier</h1>
<p class="recent-post-meta-extra">September 4, 2015</p>
</div>
</a>
</article>
</div>
<!-- end widget -->
<aside class="widget widget_deal_search">
<div class="deal-search-widget-wrapper">
<h4 class="widget-title">Search</h4>
<form>
<div class="input-group">
<input type="text" name="deal_search"
class="form-control" placeholder="Search Deals">
<input type="hidden" name="search_type" value="deal">
<span class="input-group-btn">
<button type="submit" class="submitt"><i
class="fa fa-arrow-right"></i></button>
</span>
</div>
</form>
</div>
<!-- end deal-search-widget-wrapper -->
</aside>
<aside class="widget widget_ssd_mailchimp">
<div class="mailchimp-widget-wrapper">
<h4 class="widget-title">Newsletter</h4>
<div class="mailchimp-widget-sub-text">Make sure you don't miss
anything!
</div>
<form>
<fieldset>
<input type="email" name="email"
placeholder="Your e-mail address" value=""
class="mail">
<input type="submit" value="Subscribe" class="subscrib">
</fieldset>
</form>
<div class="mailchimp-widget-message"></div>
</div>
<!-- end mailchimp-widget-wrapper -->
</aside>
<div id="tag_cloud-3" class="widget widget_tag_cloud">
<h4 class="widget-title">Tags</h4>
<div class="tagcloud"><a href=""
class="tag-cloud-link tag-link-37 tag-link-position-1"
style="font-size: 8pt;" aria-label="are (3 items)">are</a>
<a href=""
class="tag-cloud-link tag-link-36 tag-link-position-2"
style="font-size: 8pt;" aria-label="here (3 items)">here</a>
<a href=""
class="tag-cloud-link tag-link-38 tag-link-position-3"
style="font-size: 8pt;" aria-label="some (3 items)">some</a>
<a href=""
class="tag-cloud-link tag-link-39 tag-link-position-4"
style="font-size: 8pt;" aria-label="tags (3 items)">tags</a>
</div>
</div>
<div id="ssd_social-3" class="widget widget_ssd_social">
<div class="social-widget-wrapper">
<h4 class="widget-title">Follow Us</h4>
<div class="single-post-share">
<div class="share-buttons is-shareable">
<a href="#" class="share social-ico" target="_blank">
<i class="fa fa-share-alt" aria-hidden="true"></i>
</a>
<a href="#" class="facebook social-ico" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="#" class="google-plus social-ico"
target="_blank">
<i class="fa fa-google-plus" aria-hidden="true"></i>
</a>
<a href="#" class="twitter social-ico" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="#" class="instagram social-ico"
target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</div>
<!-- end share-buttons -->
</div>
<!-- end share-buttons -->
</div>
</div>
<!-- end widget -->
</div>
</div>
<div class="col-md-9">
<article class="single-post-wrapper">
<div class="single-post-featured-image">
<img src="assets/img/blog/b1.jpg"
class="attachment-ssd_single-post-image size-ssd_single-post-image"
alt=""> </div>
<!-- single-post-featured-image -->
<div class="single-post-content">
<h1 class="single-post-title"><a href="blog-details.html">Makeup
and Styling Tips You Wish Knew Earlier</a></h1>
<div class="single-post-meta">
<i class="fa fa-calendar-check-o" aria-hidden="true"></i><span
class="single-post-meta-value">September 4, 2015</span>
<i class="fa fa-user-o" aria-hidden="true"></i><span
class="single-post-meta-value">admin</span>
<i class="fa fa-files-o" aria-hidden="true"></i><span
class="single-post-meta-value"><a
href="category-details.html"
class="italics">Restaurant</a></span>
</div>
<div class="single-post-main-content">
<p>Lygon street spruikers chopper read, the rebels vic market
north of the river cumulus inc posh brighton, fairy penguins
Rod Laver don dons melb middle-aged lycra clad cyclists, the
saints fed square the borek woman south of the river the
hawks, swanston prahran hipsters presets.</p>
<p>Formula one grand prix movida, kath and kim the melbourne cup
carlton trams pellegrini’s, the australian open swanston
rocking out the espy ac/dc formula one grand prix, purple
emerald mamasita grammar vs scotch food bloggers graffiti,
flemington racecourse the rebels dumplings.</p>
<p>Chapel street avalon is so not melb, temper trap middle-aged
lycra clad cyclists shane warne cold drip coffee the
melbourne cup, the bulldogs the hawks flemington racecourse
collins place world’s most liveable city, melb hu tong
dumplings the crazy wing challenge bespectacled girls the
storm, richmond tigers werribee wildlife ball.</p>
<div class="single-post-share">
<div class="share-buttons is-shareable">
<a href="#" class="share social-ico" target="_blank">
<i class="fa fa-share-alt" aria-hidden="true"></i>
</a>
<a href="#" class="facebook social-ico" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="#" class="google-plus social-ico"
target="_blank">
<i class="fa fa-google-plus" aria-hidden="true"></i>
</a>
<a href="#" class="twitter social-ico" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="#" class="instagram social-ico"
target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</div>
<!-- end share-buttons -->
</div>
<!-- end single-post-share -->
</div>
<div class="post-meta tags-list">
<a href="" rel="tag">are</a><a href="" rel="tag">here</a><a
href="" rel="tag">some</a><a href="" rel="tag">tags</a>
</div>
<!-- end post-meta -->
</div>
<!-- end single-post-content -->
</article>
<article class="single-post-wrapper">
<div class="single-post-featured-image">
<img src="assets/img/blog/blog01.jpg"
class="attachment-ssd_single-post-image size-ssd_single-post-image"
alt=""> </div>
<!-- single-post-featured-image -->
<div class="single-post-content">
<h1 class="single-post-title"><a href="blog-details.html">Makeup
and Styling Tips You Wish Knew Earlier</a></h1>
<div class="single-post-meta">
<i class="fa fa-calendar-check-o" aria-hidden="true"></i><span
class="single-post-meta-value">September 4, 2015</span>
<i class="fa fa-user-o" aria-hidden="true"></i><span
class="single-post-meta-value">admin</span>
<i class="fa fa-files-o" aria-hidden="true"></i><span
class="single-post-meta-value"><a
href="category-details.html"
class="italics">Restaurant</a></span>
</div>
<div class="single-post-main-content">
<p>Lygon street spruikers chopper read, the rebels vic market
north of the river cumulus inc posh brighton, fairy penguins
Rod Laver don dons melb middle-aged lycra clad cyclists, the
saints fed square the borek woman south of the river the
hawks, swanston prahran hipsters presets.</p>
<p>Formula one grand prix movida, kath and kim the melbourne cup
carlton trams pellegrini’s, the australian open swanston
rocking out the espy ac/dc formula one grand prix, purple
emerald mamasita grammar vs scotch food bloggers graffiti,
flemington racecourse the rebels dumplings.</p>
<p>Chapel street avalon is so not melb, temper trap middle-aged
lycra clad cyclists shane warne cold drip coffee the
melbourne cup, the bulldogs the hawks flemington racecourse
collins place world’s most liveable city, melb hu tong
dumplings the crazy wing challenge bespectacled girls the
storm, richmond tigers werribee wildlife ball.</p>
<div class="single-post-share">
<div class="share-buttons is-shareable">
<a href="#" class="share social-ico" target="_blank">
<i class="fa fa-share-alt" aria-hidden="true"></i>
</a>
<a href="#" class="facebook social-ico" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="#" class="google-plus social-ico"
target="_blank">
<i class="fa fa-google-plus" aria-hidden="true"></i>
</a>
<a href="#" class="twitter social-ico" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="#" class="instagram social-ico"
target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</div>
<!-- end share-buttons -->
</div>
<!-- end single-post-share -->
</div>
<div class="post-meta tags-list">
<a href="" rel="tag">are</a><a href="" rel="tag">here</a><a
href="" rel="tag">some</a><a href="" rel="tag">tags</a>
</div>
<!-- end post-meta -->
</div>
<!-- end single-post-content -->
</article>
<article class="single-post-wrapper">
<div class="single-post-featured-image">
<img src="assets/img/blog/blog02.jpg"
class="attachment-ssd_single-post-image size-ssd_single-post-image"
alt=""> </div>
<!-- single-post-featured-image -->
<div class="single-post-content">
<h1 class="single-post-title"><a href="blog-details.html">Makeup
and Styling Tips You Wish Knew Earlier</a></h1>
<div class="single-post-meta">
<i class="fa fa-calendar-check-o" aria-hidden="true"></i><span
class="single-post-meta-value">September 4, 2015</span>
<i class="fa fa-user-o" aria-hidden="true"></i><span
class="single-post-meta-value">admin</span>
<i class="fa fa-files-o" aria-hidden="true"></i><span
class="single-post-meta-value"><a
href="category-details.html"
class="italics">Restaurant</a></span>
</div>
<div class="single-post-main-content">
<p>Lygon street spruikers chopper read, the rebels vic market
north of the river cumulus inc posh brighton, fairy penguins
Rod Laver don dons melb middle-aged lycra clad cyclists, the
saints fed square the borek woman south of the river the
hawks, swanston prahran hipsters presets.</p>
<p>Formula one grand prix movida, kath and kim the melbourne cup
carlton trams pellegrini’s, the australian open swanston
rocking out the espy ac/dc formula one grand prix, purple
emerald mamasita grammar vs scotch food bloggers graffiti,
flemington racecourse the rebels dumplings.</p>
<p>Chapel street avalon is so not melb, temper trap middle-aged
lycra clad cyclists shane warne cold drip coffee the
melbourne cup, the bulldogs the hawks flemington racecourse
collins place world’s most liveable city, melb hu tong
dumplings the crazy wing challenge bespectacled girls the
storm, richmond tigers werribee wildlife ball.</p>
<div class="single-post-share">
<div class="share-buttons is-shareable">
<a href="#" class="share social-ico" target="_blank">
<i class="fa fa-share-alt" aria-hidden="true"></i>
</a>
<a href="#" class="facebook social-ico" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="#" class="google-plus social-ico"
target="_blank">
<i class="fa fa-google-plus" aria-hidden="true"></i>
</a>
<a href="#" class="twitter social-ico" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="#" class="instagram social-ico"
target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</div>
<!-- end share-buttons -->
</div>
<!-- end single-post-share -->
</div>
<div class="post-meta tags-list">
<a href="" rel="tag">are</a><a href="" rel="tag">here</a><a
href="" rel="tag">some</a><a href="" rel="tag">tags</a>
</div>
<!-- end post-meta -->
</div>
<!-- end single-post-content -->
</article>
</div>
</div>
</div>
</div>
<!-- New deals Section End -->
</div>
</div>
</div>
<!-- New deals Section End -->
</div>
</div>
</div>
<!-- trending stores end -->
<footer class="footer">
<div class="bg-image parallax" data-bgimage=""></div>
<div class="overlay-dark"></div>
<div class="container footer-wrapper">
<div class="row">
<div class="col-md-3 col-sm-12">
<div id="image-3" class="widget clearfix widget_image">
<div class="image-widget-wrapper widget-list"> <img width="175" height="38"
src="assets/img/logo/logo-light.png"
class="attachment-ssd_widget-bgimage size-ssd_widget-bgimage" alt=""> </div>
<!-- end image-widget-wrapper -->
</div>
<div id="text-2" class="widget clearfix widget_text">
<div class="textwidget">CouponHut is a premium Wordpress Deals and Coupons theme. Purple emerald
the bulldogs, south of the river bespectacled girls ticket inspector footy.
</div>
</div>
</div>
<div class="col-md-3 col-sm-12">
<div id="deal_categories-3" class="widget clearfix widget_deal_categories">
<div class="overlay-color"></div>
<div class="deal-categories-widget-wrapper widget-list">
<h4 class="widget-title">Deal Categories</h4>
<div class="widget-deal-categories-content">
<ul>
<li><a href="category-details.html"><span
class="widget-list-number-counter">4</span>Beauty</a></li>
<li><a href="category-details.html"><span
class="widget-list-number-counter">1</span>Food</a></li>
<li><a href="category-details.html"><span
class="widget-list-number-counter">1</span>Gifts</a></li>
<li><a href="category-details.html"><span
class="widget-list-number-counter">0</span>Shopping</a>
</li>
<li><a href="category-details.html"><span
class="widget-list-number-counter">0</span>Sport</a></li>
<li><a href="category-details.html"><span
class="widget-list-number-counter">4</span>Travel</a></li>
</ul>
</div>
<!-- end widget-deal-categories-content -->
</div>
<!-- end deal-categories-widget-wrapper -->
</div>
</div>
<div class="col-md-3 col-sm-12">
<div id="twitter-2" class="widget clearfix widget_twitter">
<div class="twitter-widget-wrapper">
<h4 class="widget-title">Twitter</h4>
<ul class="list-unstyled">
<li>
<div class="tweet-content"><a href="" class="twitter-user">@jaxon_guerrero</a>
<a href="" class="twitter-user">@jaxon_guerrero</a> Sorry for the late answer.
Unfortunately, we do not have such a list with clients using it.</div> <a
href="" class="tweet-time">40 days ago</a>
</li>
<li>
<div class="tweet-content">We are happy to announce that our newest <a
href="">#WordPress</a> Theme "Leona" is OUT NOW! Featuring <a
href="">#WooCommerce</a> support and be… <a href=""
target="_blank">https://t.co/pR2IoAeJqC</a></div>
<a href="" class="tweet-time">187 days
ago</a>
</li>
<li>
<div class="tweet-content">📣 The long awaited <a href="">#WordPress</a> 5.0 is out
now. Gutenberg is now the default editor which might bring some issues whi… <a
href="" target="_blank">https://t.co/lb3T2PfGey</a></div>
<a href="" class="tweet-time"></a>
</li>
</ul>
</div>
<!-- end twitter-widget-wrapper -->
</div>
</div>
<div class="col-md-3 col-sm-12">
<div id="ssd_social-2" class="widget clearfix widget_ssd_social">
<div class="social-widget-wrapper">
<h4 class="widget-title">Follow Us</h4>
<div class="share-buttons">
<a href="#" class="facebook" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="#" class="google-plus" target="_blank">
<i class="fa fa-google-plus" aria-hidden="true"></i>
</a>
<a href="#" class="twitter" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="#" class="instagram" target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</div>
<!-- end share-buttons -->
</div>
</div>
</div>
<div class="clear"></div>
</div>
<div class="row">
<div class="col-sm-12">
<section class="copyright">
© 2019 CouponHut. All rights reserved. </section>
</div>
</div>
</div>
<!-- end container -->
</footer>
<!-- //SITE CONTENT END -->
</div>
<!-- SITE SCRIPT -->
<!-- jquery -->
<script src="assets/vendor/jquery/jquery-1.11.3.min.js"></script>
<!-- BOOTSTRAP JS -->
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- if load google maps then load this api -->
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyChihC--Jb_QURoXd2MugyC53cDQjrV2MY"></script>
<!-- load if our contact form or email subscribe options is used -->
<script src="assets/vendor/validation/jquery.validate.js"></script>
<!--owl-->
<script src="assets/vendor/owl-carousel/dist/owl.carousel.min.js"></script>
<!-- clipboard.js -->
<script src="assets/vendor/clipboard.js/clipboard.min.js"></script>
<!-- flatpickr -->
<script src="assets/vendor/flatpickr/flatpickr.js"></script>
<!-- lity -->
<script src="assets/vendor/lity/lity.min.js"></script>
<!-- Bootstrap Slider -->
<script src="assets/vendor/bootstrap-slider/bootstrap-slider.min.js"></script>
<!-- switcher -->
<script id="switcherhandle" src="assets/switcher/switcher.js"></script>
<!-- THEME SCRIPT -->
<script src="assets/js/theme.js"></script>
<!-- CUSTOM SCRIPT -->
<script src="assets/js/custom.js"></script>
</body>
</html>