-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
810 lines (704 loc) · 56.3 KB
/
shop.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
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
<!doctype html>
<html lang="en-US">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120909275-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120909275-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="https://askbootstrap.com/xmlrpc.php">
<title>Page not found – Ask Bootstrap</title>
<script>window._wca = window._wca || [];</script>
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//secure.gravatar.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Ask Bootstrap » Feed" href="https://askbootstrap.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Ask Bootstrap » Comments Feed" href="https://askbootstrap.com/comments/feed/" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/askbootstrap.com\/wp-includes\/js\/wp-emoji-release.min.js"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<style id='woocommerce-inline-inline-css' type='text/css'>
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel='stylesheet' id='dashicons-css' href='https://askbootstrap.com/wp-includes/css/dashicons.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='storefront-style-css' href='https://askbootstrap.com/wp-content/themes/storefront/style.css' type='text/css' media='all' />
<style id='storefront-style-inline-css' type='text/css'>
.main-navigation ul li a,
.site-title a,
ul.menu li a,
.site-branding h1 a,
.site-footer .storefront-handheld-footer-bar a:not(.button),
button.menu-toggle,
button.menu-toggle:hover {
color: #333333;
}
button.menu-toggle,
button.menu-toggle:hover {
border-color: #333333;
}
.main-navigation ul li a:hover,
.main-navigation ul li:hover > a,
.site-title a:hover,
a.cart-contents:hover,
.site-header-cart .widget_shopping_cart a:hover,
.site-header-cart:hover > li > a,
.site-header ul.menu li.current-menu-item > a {
color: #747474;
}
table th {
background-color: #f8f8f8;
}
table tbody td {
background-color: #fdfdfd;
}
table tbody tr:nth-child(2n) td,
fieldset,
fieldset legend {
background-color: #fbfbfb;
}
.site-header,
.secondary-navigation ul ul,
.main-navigation ul.menu > li.menu-item-has-children:after,
.secondary-navigation ul.menu ul,
.storefront-handheld-footer-bar,
.storefront-handheld-footer-bar ul li > a,
.storefront-handheld-footer-bar ul li.search .site-search,
button.menu-toggle,
button.menu-toggle:hover {
background-color: #ffffff;
}
p.site-description,
.site-header,
.storefront-handheld-footer-bar {
color: #404040;
}
.storefront-handheld-footer-bar ul li.cart .count,
button.menu-toggle:after,
button.menu-toggle:before,
button.menu-toggle span:before {
background-color: #333333;
}
.storefront-handheld-footer-bar ul li.cart .count {
color: #ffffff;
}
.storefront-handheld-footer-bar ul li.cart .count {
border-color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
color: #333333;
}
.widget h1 {
border-bottom-color: #333333;
}
body,
.secondary-navigation a,
.onsale,
.pagination .page-numbers li .page-numbers:not(.current), .woocommerce-pagination .page-numbers li .page-numbers:not(.current) {
color: #6d6d6d;
}
.widget-area .widget a,
.hentry .entry-header .posted-on a,
.hentry .entry-header .byline a {
color: #727272;
}
a {
color: #a74193;
}
a:focus,
.button:focus,
.button.alt:focus,
.button.added_to_cart:focus,
.button.wc-forward:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
outline-color: #a74193;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .button, .added_to_cart, .widget a.button, .site-header-cart .widget_shopping_cart a.button {
background-color: #3a2c78;
border-color: #3a2c78;
color: #f2f2f2;
}
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .button:hover, .added_to_cart:hover, .widget a.button:hover, .site-header-cart .widget_shopping_cart a.button:hover {
background-color: #21135f;
border-color: #21135f;
color: #f2f2f2;
}
button.alt, input[type="button"].alt, input[type="reset"].alt, input[type="submit"].alt, .button.alt, .added_to_cart.alt, .widget-area .widget a.button.alt, .added_to_cart, .widget a.button.checkout {
background-color: #a74193;
border-color: #a74193;
color: #ffffff;
}
button.alt:hover, input[type="button"].alt:hover, input[type="reset"].alt:hover, input[type="submit"].alt:hover, .button.alt:hover, .added_to_cart.alt:hover, .widget-area .widget a.button.alt:hover, .added_to_cart:hover, .widget a.button.checkout:hover {
background-color: #8e287a;
border-color: #8e287a;
color: #ffffff;
}
.pagination .page-numbers li .page-numbers.current, .woocommerce-pagination .page-numbers li .page-numbers.current {
background-color: #e6e6e6;
color: #636363;
}
#comments .comment-list .comment-content .comment-text {
background-color: #f8f8f8;
}
.site-footer {
background-color: #232323;
color: #adadad;
}
.site-footer a:not(.button) {
color: #adadad;
}
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
color: #ffffff;
}
.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-title {
color: #000000;
}
.page-template-template-homepage.has-post-thumbnail .type-page.has-post-thumbnail .entry-content {
color: #000000;
}
#order_review {
background-color: #ffffff;
}
#payment .payment_methods > li .payment_box,
#payment .place-order {
background-color: #fafafa;
}
#payment .payment_methods > li:not(.woocommerce-notice) {
background-color: #f5f5f5;
}
#payment .payment_methods > li:not(.woocommerce-notice):hover {
background-color: #f0f0f0;
}
@media screen and ( min-width: 768px ) {
.secondary-navigation ul.menu a:hover {
color: #595959;
}
.secondary-navigation ul.menu a {
color: #404040;
}
.site-header-cart .widget_shopping_cart,
.main-navigation ul.menu ul.sub-menu,
.main-navigation ul.nav-menu ul.children {
background-color: #f0f0f0;
}
.site-header-cart .widget_shopping_cart .buttons,
.site-header-cart .widget_shopping_cart .total {
background-color: #f5f5f5;
}
.site-header {
border-bottom-color: #f0f0f0;
}
}.storefront-product-pagination a {
color: #6d6d6d;
background-color: #ffffff;
}
.storefront-sticky-add-to-cart {
color: #6d6d6d;
background-color: #ffffff;
}
.storefront-sticky-add-to-cart a:not(.button) {
color: #333333;
}
</style>
<link rel='stylesheet' id='storefront-icons-css' href='https://askbootstrap.com/wp-content/themes/storefront/assets/css/base/icons.css' type='text/css' media='all' />
<link rel='stylesheet' id='storefront-fonts-css' href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,300italic,400italic,600,700,900&subset=latin%2Clatin-ext' type='text/css' media='all' />
<link rel='stylesheet' id='storefront-jetpack-style-css' href='https://askbootstrap.com/wp-content/themes/storefront/assets/css/jetpack/jetpack.css' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack-widget-social-icons-styles-css' href='https://askbootstrap.com/wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons.css' type='text/css' media='all' />
<link rel='stylesheet' id='storefront-woocommerce-style-css' href='https://askbootstrap.com/wp-content/themes/storefront/assets/css/woocommerce/woocommerce.css' type='text/css' media='all' />
<style id='storefront-woocommerce-style-inline-css' type='text/css'>
a.cart-contents,
.site-header-cart .widget_shopping_cart a {
color: #333333;
}
table.cart td.product-remove,
table.cart td.actions {
border-top-color: #ffffff;
}
.woocommerce-tabs ul.tabs li.active a,
ul.products li.product .price,
.onsale,
.widget_search form:before,
.widget_product_search form:before {
color: #6d6d6d;
}
.woocommerce-breadcrumb a,
a.woocommerce-review-link,
.product_meta a {
color: #727272;
}
.onsale {
border-color: #6d6d6d;
}
.star-rating span:before,
.quantity .plus, .quantity .minus,
p.stars a:hover:after,
p.stars a:after,
.star-rating span:before,
#payment .payment_methods li input[type=radio]:first-child:checked+label:before {
color: #a74193;
}
.widget_price_filter .ui-slider .ui-slider-range,
.widget_price_filter .ui-slider .ui-slider-handle {
background-color: #a74193;
}
.order_details {
background-color: #f8f8f8;
}
.order_details > li {
border-bottom: 1px dotted #e3e3e3;
}
.order_details:before,
.order_details:after {
background: -webkit-linear-gradient(transparent 0,transparent 0),-webkit-linear-gradient(135deg,#f8f8f8 33.33%,transparent 33.33%),-webkit-linear-gradient(45deg,#f8f8f8 33.33%,transparent 33.33%)
}
p.stars a:before,
p.stars a:hover~a:before,
p.stars.selected a.active~a:before {
color: #6d6d6d;
}
p.stars.selected a.active:before,
p.stars:hover a:before,
p.stars.selected a:not(.active):before,
p.stars.selected a.active:before {
color: #a74193;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
background-color: #3a2c78;
color: #f2f2f2;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
background-color: #21135f;
border-color: #21135f;
color: #f2f2f2;
}
.button.loading {
color: #3a2c78;
}
.button.loading:hover {
background-color: #3a2c78;
}
.button.loading:after {
color: #f2f2f2;
}
@media screen and ( min-width: 768px ) {
.site-header-cart .widget_shopping_cart,
.site-header .product_list_widget li .quantity {
color: #404040;
}
}
</style>
<link rel='stylesheet' id='jetpack_css-css' href='https://askbootstrap.com/wp-content/plugins/jetpack/css/jetpack.css' type='text/css' media='all' />
<link rel='stylesheet' id='dgwt-wcas-style-css' href='https://askbootstrap.com/wp-content/plugins/ajax-search-for-woocommerce/backward-compatibility/1-1-7/style.css' type='text/css' media='all' />
<script type='text/javascript' src='https://askbootstrap.com/wp-includes/js/jquery/jquery.js'></script>
<script type='text/javascript' src='https://askbootstrap.com/wp-includes/js/jquery/jquery-migrate.min.js'></script>
<link rel='https://api.w.org/' href='https://askbootstrap.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://askbootstrap.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://askbootstrap.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.8" />
<meta name="generator" content="WooCommerce 3.4.5" />
<style type="text/css">.dgwt-wcas-search-wrapp{max-width:600px}</style>
<link rel='dns-prefetch' href='//v0.wordpress.com'/>
<style type='text/css'>img#wpstats{display:none}</style> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<link rel="icon" href="https://askbootstrap.com/wp-content/uploads/2018/03/askbootstrap-fav.png" sizes="32x32" />
<link rel="icon" href="https://askbootstrap.com/wp-content/uploads/2018/03/askbootstrap-fav.png" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="https://askbootstrap.com/wp-content/uploads/2018/03/askbootstrap-fav.png" />
<meta name="msapplication-TileImage" content="https://askbootstrap.com/wp-content/uploads/2018/03/askbootstrap-fav.png" />
<link rel="stylesheet" type="text/css" id="wp-custom-css" href="https://askbootstrap.com/?custom-css=f63497a7bf" />
<script async src='https://stats.wp.com/s-201841.js'></script>
</head>
<body class="error404 wp-custom-logo woocommerce-no-js dgwt-wcas-bc-1-1-7 storefront-full-width-content storefront-secondary-navigation left-sidebar woocommerce-active">
<div id="page" class="hfeed site">
<header id="masthead" class="site-header" role="banner" style="">
<div class="col-full"> <a class="skip-link screen-reader-text" href="#site-navigation">Skip to navigation</a>
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<div class="site-branding">
<a href="https://askbootstrap.com/" class="custom-logo-link" rel="home" itemprop="url"><img width="442" height="110" src="https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1.png" class="custom-logo" alt="Ask Bootstrap" itemprop="logo" srcset="https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1.png 442w, https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1-324x81.png 324w, https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1-300x75.png 300w, https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1-416x104.png 416w" sizes="(max-width: 442px) 100vw, 442px" /></a> </div>
<nav class="secondary-navigation" role="navigation" aria-label="Secondary Navigation">
<div class="menu-askbootstrap-top-container"><ul id="menu-askbootstrap-top" class="menu"><li id="menu-item-65" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-65"><a href="https://askbootstrap.com/my-account/">My account</a></li>
<li id="menu-item-66" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66"><a href="https://askbootstrap.com/checkout/">Checkout</a></li>
<li id="menu-item-67" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-67"><a href="https://askbootstrap.com/shop/">Shop</a></li>
</ul></div> </nav><!-- #site-navigation -->
<div class="site-search">
<div class="widget woocommerce widget_product_search"><form role="search" method="get" class="woocommerce-product-search" action="https://askbootstrap.com/">
<label class="screen-reader-text" for="woocommerce-product-search-field-0">Search for:</label>
<input type="search" id="woocommerce-product-search-field-0" class="search-field" placeholder="Search products…" value="" name="s" />
<button type="submit" value="Search">Search</button>
<input type="hidden" name="post_type" value="product" />
</form>
</div> </div>
</div><div class="storefront-primary-navigation"><div class="col-full"> <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="Primary Navigation">
<button class="menu-toggle" aria-controls="site-navigation" aria-expanded="false"><span>Menu</span></button>
<div class="primary-navigation"><ul id="menu-askbootstrap" class="menu"><li id="menu-item-81" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-81"><a href="https://askbootstrap.com/category/premium-template/">Premium Templates</a>
<ul class="sub-menu">
<li id="menu-item-89" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-89"><a href="https://askbootstrap.com/category/premium-template/popular-items/">Popular Items</a></li>
<li id="menu-item-83" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-83"><a href="https://askbootstrap.com/category/premium-template/corporate-business/">Corporate & Business</a></li>
<li id="menu-item-85" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-85"><a href="https://askbootstrap.com/category/premium-template/ecommerce/">eCommerce</a></li>
<li id="menu-item-84" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-84"><a href="https://askbootstrap.com/category/premium-template/creative/">Creative</a></li>
<li id="menu-item-82" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-82"><a href="https://askbootstrap.com/category/premium-template/coming-soon-template/">Coming Soon Template</a></li>
<li id="menu-item-86" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-86"><a href="https://askbootstrap.com/category/premium-template/education/">Education</a></li>
<li id="menu-item-87" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-87"><a href="https://askbootstrap.com/category/premium-template/medical/">Medical</a></li>
<li id="menu-item-88" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-88"><a href="https://askbootstrap.com/category/premium-template/mobile-app-template/">Mobile App Template</a></li>
</ul>
</li>
<li id="menu-item-55" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-55"><a href="https://askbootstrap.com/category/bootstrap-templates/">Bootstrap Templates</a></li>
<li id="menu-item-227" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-227"><a href="https://askbootstrap.com/category/freebies/">Freebies</a>
<ul class="sub-menu">
<li id="menu-item-228" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-228"><a href="https://askbootstrap.com/category/freebies/html-templates/">HTML Templates</a></li>
<li id="menu-item-229" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-229"><a href="https://askbootstrap.com/category/freebies/psd/">PSD</a></li>
</ul>
</li>
<li id="menu-item-57" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-57"><a href="https://askbootstrap.com/category/bootstrap-snippets/">Bootstrap Snippets</a></li>
<li id="menu-item-58" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-58"><a href="https://askbootstrap.com/blog/">Blog</a></li>
</ul></div><div class="handheld-navigation"><ul id="menu-askbootstrap-1" class="menu"><li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-81"><a href="https://askbootstrap.com/category/premium-template/">Premium Templates</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-89"><a href="https://askbootstrap.com/category/premium-template/popular-items/">Popular Items</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-83"><a href="https://askbootstrap.com/category/premium-template/corporate-business/">Corporate & Business</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-85"><a href="https://askbootstrap.com/category/premium-template/ecommerce/">eCommerce</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-84"><a href="https://askbootstrap.com/category/premium-template/creative/">Creative</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-82"><a href="https://askbootstrap.com/category/premium-template/coming-soon-template/">Coming Soon Template</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-86"><a href="https://askbootstrap.com/category/premium-template/education/">Education</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-87"><a href="https://askbootstrap.com/category/premium-template/medical/">Medical</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-88"><a href="https://askbootstrap.com/category/premium-template/mobile-app-template/">Mobile App Template</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-55"><a href="https://askbootstrap.com/category/bootstrap-templates/">Bootstrap Templates</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-227"><a href="https://askbootstrap.com/category/freebies/">Freebies</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-228"><a href="https://askbootstrap.com/category/freebies/html-templates/">HTML Templates</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-229"><a href="https://askbootstrap.com/category/freebies/psd/">PSD</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-57"><a href="https://askbootstrap.com/category/bootstrap-snippets/">Bootstrap Snippets</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-58"><a href="https://askbootstrap.com/blog/">Blog</a></li>
</ul></div> </nav><!-- #site-navigation -->
<ul id="site-header-cart" class="site-header-cart menu">
<li class="">
<a class="cart-contents" href="https://askbootstrap.com/cart/" title="View your shopping cart">
<span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span> <span class="count">0 items</span>
</a>
</li>
<li>
<div class="widget woocommerce widget_shopping_cart"><div class="widget_shopping_cart_content"></div></div> </li>
</ul>
</div></div>
</header><!-- #masthead -->
<div class="header-widget-region" role="complementary">
<div class="col-full">
<div id="dgwt_wcas_ajax_search-2" class="widget woocommerce dgwt-wcas-widget"><span class="gamma widget-title">Free & Premium Bootstrap templates & Themes, PSD templates, Graphics Item etc.</span><div class="dgwt-wcas-search-wrapp dgwt-wcas-no-submit">
<form class="dgwt-wcas-search-form" role="search" action="https://askbootstrap.com/" method="get">
<div class="dgwt-wcas-sf-wrapp">
<svg version="1.1" class="dgwt-wcas-ico-loupe" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 51.539 51.361" enable-background="new 0 0 51.539 51.361" xml:space="preserve">
<path d="M51.539,49.356L37.247,35.065c3.273-3.74,5.272-8.623,5.272-13.983c0-11.742-9.518-21.26-21.26-21.26
S0,9.339,0,21.082s9.518,21.26,21.26,21.26c5.361,0,10.244-1.999,13.983-5.272l14.292,14.292L51.539,49.356z M2.835,21.082
c0-10.176,8.249-18.425,18.425-18.425s18.425,8.249,18.425,18.425S31.436,39.507,21.26,39.507S2.835,31.258,2.835,21.082z"/>
</svg>
<label class="screen-reader-text" for="dgwt-wcas-search">Products search</label>
<input
type="search"
class="dgwt-wcas-search-input"
name="s"
value=""
placeholder="Enter keyword"
/>
<div class="dgwt-wcas-preloader"></div>
<input type="hidden" name="post_type" value="product" />
<input type="hidden" name="dgwt_wcas" value="1" />
</div>
</form>
</div></div> </div>
</div>
<div class="storefront-breadcrumb"><div class="col-full"><nav class="woocommerce-breadcrumb"><a href="https://askbootstrap.com">Home</a><span class="breadcrumb-separator"> / </span>Error 404</nav></div></div>
<div id="content" class="site-content" tabindex="-1">
<div class="col-full">
<div class="woocommerce"></div>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="error-404 not-found">
<div class="page-content">
<header class="page-header">
<h1 class="page-title">Oops! That page can’t be found.</h1>
</header><!-- .page-header -->
<p>Nothing was found at this location. Try searching, or check out the links below.</p>
<section aria-label="Search"><div class="widget woocommerce widget_product_search"><form role="search" method="get" class="woocommerce-product-search" action="https://askbootstrap.com/">
<label class="screen-reader-text" for="woocommerce-product-search-field-1">Search for:</label>
<input type="search" id="woocommerce-product-search-field-1" class="search-field" placeholder="Search products…" value="" name="s" />
<button type="submit" value="Search">Search</button>
<input type="hidden" name="post_type" value="product" />
</form>
</div></section><div class="fourohfour-columns-2"><section class="col-1" aria-label="Promoted Products"><h2>On Sale Now</h2><div class="woocommerce columns-2 "><ul class="products columns-2">
<li class="post-99 product type-product status-publish has-post-thumbnail product_cat-corporate-business product_cat-creative product_cat-popular-items product_cat-premium-template product_tag-blog product_tag-bootstrap-responsive-template product_tag-business product_tag-classify product_tag-creative product_tag-css3 product_tag-html5 product_tag-html5-template product_tag-multipurpose product_tag-portfolio product_tag-responsive first instock sale downloadable virtual sold-individually purchasable product-type-simple">
<a href="https://askbootstrap.com/item/obootstrap-classified-bootstrap-responsive-website-template/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><img width="324" height="165" src="https://askbootstrap.com/wp-content/uploads/2018/06/OBootstrap-Classified-Bootstrap-Responsive-Website-Template--324x165.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wp-post-image" alt="OBootstrap Classified Bootstrap Responsive Website Template" srcset="https://askbootstrap.com/wp-content/uploads/2018/06/OBootstrap-Classified-Bootstrap-Responsive-Website-Template--324x165.png 324w, https://askbootstrap.com/wp-content/uploads/2018/06/OBootstrap-Classified-Bootstrap-Responsive-Website-Template--300x153.png 300w, https://askbootstrap.com/wp-content/uploads/2018/06/OBootstrap-Classified-Bootstrap-Responsive-Website-Template--416x212.png 416w, https://askbootstrap.com/wp-content/uploads/2018/06/OBootstrap-Classified-Bootstrap-Responsive-Website-Template-.png 590w" sizes="(max-width: 324px) 100vw, 324px" /><h2 class="woocommerce-loop-product__title">OBootstrap Classified | Bootstrap Responsive Website Template</h2>
<span class="onsale">Sale!</span>
<span class="price"><del><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>18.00</span></del> <ins><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>14.00</span></ins></span>
</a><a href="/preview/vidoe-v1-1/shop.html?add-to-cart=99" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="99" data-product_sku="" aria-label="Add “OBootstrap Classified | Bootstrap Responsive Website Template” to your cart" rel="nofollow">Add to cart</a></li>
<li class="post-78 product type-product status-publish has-post-thumbnail product_cat-corporate-business product_cat-premium-template product_tag-bootstrap product_tag-bootstrap-theme product_tag-business product_tag-clean-design product_tag-corporate product_tag-mobile-responsive product_tag-multi-purpose product_tag-multiple-page product_tag-responsive last instock sale downloadable virtual sold-individually purchasable product-type-simple">
<a href="https://askbootstrap.com/item/osahan-ads-listing-template/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><img width="324" height="203" src="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Ads-Listing-Template-324x203.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wp-post-image" alt="Osahan - Ads Listing Template" srcset="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Ads-Listing-Template-324x203.png 324w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Ads-Listing-Template-300x188.png 300w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Ads-Listing-Template-416x260.png 416w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Ads-Listing-Template.png 600w" sizes="(max-width: 324px) 100vw, 324px" /><h2 class="woocommerce-loop-product__title">Osahan – Ads Listing Responsive Website Template</h2>
<span class="onsale">Sale!</span>
<span class="price"><del><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>18.00</span></del> <ins><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>10.00</span></ins></span>
</a><a href="/preview/vidoe-v1-1/shop.html?add-to-cart=78" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="78" data-product_sku="" aria-label="Add “Osahan - Ads Listing Responsive Website Template” to your cart" rel="nofollow">Add to cart</a></li>
</ul>
</div></section><nav class="col-2" aria-label="Product Categories"><h2>Product Categories</h2><div class="widget woocommerce widget_product_categories"><ul class="product-categories"><li class="cat-item cat-item-29"><a href="https://askbootstrap.com/category/bootstrap-snippets/">Bootstrap Snippets</a> <span class="count">(0)</span></li>
<li class="cat-item cat-item-27"><a href="https://askbootstrap.com/category/bootstrap-templates/">Bootstrap Templates</a> <span class="count">(8)</span></li>
<li class="cat-item cat-item-28 cat-parent"><a href="https://askbootstrap.com/category/freebies/">Freebies</a> <span class="count">(4)</span><ul class='children'>
<li class="cat-item cat-item-122"><a href="https://askbootstrap.com/category/freebies/html-templates/">HTML Templates</a> <span class="count">(3)</span></li>
<li class="cat-item cat-item-121"><a href="https://askbootstrap.com/category/freebies/psd/">PSD</a> <span class="count">(1)</span></li>
</ul>
</li>
<li class="cat-item cat-item-26 cat-parent"><a href="https://askbootstrap.com/category/premium-template/">Premium Templates</a> <span class="count">(13)</span><ul class='children'>
<li class="cat-item cat-item-42"><a href="https://askbootstrap.com/category/premium-template/coming-soon-template/">Coming Soon Template</a> <span class="count">(0)</span></li>
<li class="cat-item cat-item-43"><a href="https://askbootstrap.com/category/premium-template/corporate-business/">Corporate & Business</a> <span class="count">(10)</span></li>
<li class="cat-item cat-item-44"><a href="https://askbootstrap.com/category/premium-template/creative/">Creative</a> <span class="count">(8)</span></li>
<li class="cat-item cat-item-45"><a href="https://askbootstrap.com/category/premium-template/ecommerce/">eCommerce</a> <span class="count">(3)</span></li>
<li class="cat-item cat-item-46"><a href="https://askbootstrap.com/category/premium-template/education/">Education</a> <span class="count">(0)</span></li>
<li class="cat-item cat-item-47"><a href="https://askbootstrap.com/category/premium-template/medical/">Medical</a> <span class="count">(0)</span></li>
<li class="cat-item cat-item-48"><a href="https://askbootstrap.com/category/premium-template/mobile-app-template/">Mobile App Template</a> <span class="count">(0)</span></li>
<li class="cat-item cat-item-41"><a href="https://askbootstrap.com/category/premium-template/popular-items/">Popular Items</a> <span class="count">(9)</span></li>
</ul>
</li>
<li class="cat-item cat-item-30"><a href="https://askbootstrap.com/category/starter-templates/">Starter Templates</a> <span class="count">(0)</span></li>
<li class="cat-item cat-item-15"><a href="https://askbootstrap.com/category/uncategorised/">Uncategorised</a> <span class="count">(0)</span></li>
</ul></div></nav></div><section aria-label="Popular Products"><h2>Popular Products</h2><div class="woocommerce columns-4 "><ul class="products columns-4">
<li class="post-210 product type-product status-publish has-post-thumbnail product_cat-bootstrap-templates product_cat-freebies product_cat-html-templates product_tag-architecture product_tag-building product_tag-company product_tag-construction product_tag-constructor product_tag-contractor product_tag-corporate product_tag-free product_tag-free-bootstrap-template product_tag-industry product_tag-metal product_tag-plumber product_tag-plumbing product_tag-remodeling product_tag-roofing first instock sale downloadable virtual sold-individually purchasable product-type-simple">
<a href="https://askbootstrap.com/item/osahan-home-construction-free-bootstrap-responsive-website-template/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><img width="324" height="165" src="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Home-Construction-free-Bootstrap-Responsive-Website-Template-324x165.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wp-post-image" alt="Osahan Home Construction free Bootstrap Responsive Website Template" srcset="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Home-Construction-free-Bootstrap-Responsive-Website-Template-324x165.png 324w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Home-Construction-free-Bootstrap-Responsive-Website-Template-300x153.png 300w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Home-Construction-free-Bootstrap-Responsive-Website-Template-416x212.png 416w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Home-Construction-free-Bootstrap-Responsive-Website-Template.png 590w" sizes="(max-width: 324px) 100vw, 324px" /><h2 class="woocommerce-loop-product__title">Osahan Home Construction | Free Bootstrap Responsive Website Template</h2>
<span class="onsale">Sale!</span>
<span class="price"><del><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>8.00</span></del> <ins><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span></ins></span>
</a><a href="/preview/vidoe-v1-1/shop.html?add-to-cart=210" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="210" data-product_sku="" aria-label="Add “Osahan Home Construction | Free Bootstrap Responsive Website Template” to your cart" rel="nofollow">Add to cart</a></li>
<li class="post-214 product type-product status-publish has-post-thumbnail product_cat-bootstrap-templates product_cat-freebies product_cat-html-templates product_tag-agency product_tag-business product_tag-corporate product_tag-creative product_tag-digital-agency product_tag-free product_tag-free-bootstrap-template product_tag-marketing product_tag-marketing-agency product_tag-minimal product_tag-modern product_tag-portfolio product_tag-sales-page product_tag-seo product_tag-seo-agency instock sale downloadable virtual sold-individually purchasable product-type-simple">
<a href="https://askbootstrap.com/item/osahan-design-studio-responsive-template/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><img width="324" height="203" src="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Design-Studio-Responsive-Template-324x203.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wp-post-image" alt="Osahan Design Studio - Responsive Template" srcset="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Design-Studio-Responsive-Template-324x203.png 324w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Design-Studio-Responsive-Template-300x188.png 300w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Design-Studio-Responsive-Template-416x260.png 416w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Design-Studio-Responsive-Template.png 600w" sizes="(max-width: 324px) 100vw, 324px" /><h2 class="woocommerce-loop-product__title">Osahan Design Studio – Bootstrap Responsive Website Template</h2>
<span class="onsale">Sale!</span>
<span class="price"><del><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>14.00</span></del> <ins><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span></ins></span>
</a><a href="/preview/vidoe-v1-1/shop.html?add-to-cart=214" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="214" data-product_sku="" aria-label="Add “Osahan Design Studio - Bootstrap Responsive Website Template” to your cart" rel="nofollow">Add to cart</a></li>
<li class="post-218 product type-product status-publish has-post-thumbnail product_cat-bootstrap-templates product_cat-freebies product_cat-html-templates product_tag-bakery product_tag-bar product_tag-business product_tag-cafe product_tag-food product_tag-food-menu product_tag-food-store product_tag-free product_tag-free-bootstrap-template product_tag-fresh product_tag-fruits product_tag-healthy-food product_tag-modern product_tag-organic product_tag-organic-store product_tag-restaurant instock sale downloadable virtual sold-individually purchasable product-type-simple">
<a href="https://askbootstrap.com/item/restro-bootstrap-responsive-restaurant-template/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><img width="324" height="165" src="https://askbootstrap.com/wp-content/uploads/2018/06/Restro-Responsive-Restaurant-Template-1-324x165.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wp-post-image" alt="Restro - Responsive Restaurant Template" srcset="https://askbootstrap.com/wp-content/uploads/2018/06/Restro-Responsive-Restaurant-Template-1-324x165.png 324w, https://askbootstrap.com/wp-content/uploads/2018/06/Restro-Responsive-Restaurant-Template-1-300x153.png 300w, https://askbootstrap.com/wp-content/uploads/2018/06/Restro-Responsive-Restaurant-Template-1-416x212.png 416w, https://askbootstrap.com/wp-content/uploads/2018/06/Restro-Responsive-Restaurant-Template-1.png 590w" sizes="(max-width: 324px) 100vw, 324px" /><h2 class="woocommerce-loop-product__title">Restro – Bootstrap Responsive Restaurant Template</h2>
<span class="onsale">Sale!</span>
<span class="price"><del><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>14.00</span></del> <ins><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span></ins></span>
</a><a href="/preview/vidoe-v1-1/shop.html?add-to-cart=218" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="218" data-product_sku="" aria-label="Add “Restro - Bootstrap Responsive Restaurant Template” to your cart" rel="nofollow">Add to cart</a></li>
<li class="post-223 product type-product status-publish has-post-thumbnail product_cat-freebies product_cat-psd product_tag-beauty product_tag-clean product_tag-clinic product_tag-corporate product_tag-dentist product_tag-doctor product_tag-fitness product_tag-free product_tag-free-psd product_tag-health product_tag-hospital product_tag-medic product_tag-medical product_tag-medicine product_tag-psd product_tag-timetable product_tag-wellness last instock sale downloadable virtual sold-individually purchasable product-type-simple">
<a href="https://askbootstrap.com/item/osahan-medical-free-psd-template/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><img width="324" height="165" src="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Medical-Free-PSD-Template--324x165.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wp-post-image" alt="Osahan - Medical Free PSD Template" srcset="https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Medical-Free-PSD-Template--324x165.jpg 324w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Medical-Free-PSD-Template--300x153.jpg 300w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Medical-Free-PSD-Template--416x212.jpg 416w, https://askbootstrap.com/wp-content/uploads/2018/06/Osahan-Medical-Free-PSD-Template-.jpg 590w" sizes="(max-width: 324px) 100vw, 324px" /><h2 class="woocommerce-loop-product__title">Osahan – Medical Free PSD Template</h2>
<span class="onsale">Sale!</span>
<span class="price"><del><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>14.00</span></del> <ins><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span></ins></span>
</a><a href="/preview/vidoe-v1-1/shop.html?add-to-cart=223" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="223" data-product_sku="" aria-label="Add “Osahan - Medical Free PSD Template” to your cart" rel="nofollow">Add to cart</a></li>
</ul>
</div></section>
</div><!-- .page-content -->
</div><!-- .error-404 -->
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .col-full -->
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="col-full">
<div class="footer-widgets row-1 col-4 fix">
<div class="block footer-widget-1">
<div id="blog_subscription-3" class="widget jetpack_subscription_widget"><span class="gamma widget-title">Subscribe Newsletter</span>
<form action="#" method="post" accept-charset="utf-8" id="subscribe-blog-blog_subscription-3">
<div id="subscribe-text"><p>Subscribe to receive inspiration, ideas, and news in your inbox. </p>
</div> <p id="subscribe-email">
<label id="jetpack-subscribe-label" for="subscribe-field-blog_subscription-3">
Email Address </label>
<input type="email" name="email" required="required" class="required" value="" id="subscribe-field-blog_subscription-3" placeholder="Email Address" />
</p>
<p id="subscribe-submit">
<input type="hidden" name="action" value="subscribe" />
<input type="hidden" name="source" value="https://askbootstrap.com/preview/vidoe-v1-1/shop.html" />
<input type="hidden" name="sub-type" value="widget" />
<input type="hidden" name="redirect_fragment" value="blog_subscription-3" />
<input type="submit" value="Subscribe" name="jetpack_subscriptions_widget" />
</p>
</form>
<script>
/*
Custom functionality for safari and IE
*/
(function( d ) {
// In case the placeholder functionality is available we remove labels
if ( ( 'placeholder' in d.createElement( 'input' ) ) ) {
var label = d.querySelector( 'label[for=subscribe-field-blog_subscription-3]' );
label.style.clip = 'rect(1px, 1px, 1px, 1px)';
label.style.position = 'absolute';
label.style.height = '1px';
label.style.width = '1px';
label.style.overflow = 'hidden';
}
// Make sure the email value is filled in before allowing submit
var form = d.getElementById('subscribe-blog-blog_subscription-3'),
input = d.getElementById('subscribe-field-blog_subscription-3'),
handler = function( event ) {
if ( '' === input.value ) {
input.focus();
if ( event.preventDefault ){
event.preventDefault();
}
return false;
}
};
if ( window.addEventListener ) {
form.addEventListener( 'submit', handler, false );
} else {
form.attachEvent( 'onsubmit', handler );
}
})( document );
</script>
</div><div id="google_translate_widget-6" class="widget widget_google_translate_widget"><span class="gamma widget-title">Translate</span><div id="google_translate_element"></div></div> </div>
<div class="block footer-widget-2">
<div id="woocommerce_product_categories-3" class="widget woocommerce widget_product_categories"><span class="gamma widget-title">Item categories</span><ul class="product-categories"><li class="cat-item cat-item-27"><a href="https://askbootstrap.com/category/bootstrap-templates/">Bootstrap Templates</a> <span class="count">(8)</span></li>
<li class="cat-item cat-item-28 cat-parent"><a href="https://askbootstrap.com/category/freebies/">Freebies</a> <span class="count">(4)</span><ul class='children'>
<li class="cat-item cat-item-122"><a href="https://askbootstrap.com/category/freebies/html-templates/">HTML Templates</a> <span class="count">(3)</span></li>
<li class="cat-item cat-item-121"><a href="https://askbootstrap.com/category/freebies/psd/">PSD</a> <span class="count">(1)</span></li>
</ul>
</li>
<li class="cat-item cat-item-26 cat-parent"><a href="https://askbootstrap.com/category/premium-template/">Premium Templates</a> <span class="count">(13)</span><ul class='children'>
<li class="cat-item cat-item-43"><a href="https://askbootstrap.com/category/premium-template/corporate-business/">Corporate & Business</a> <span class="count">(10)</span></li>
<li class="cat-item cat-item-44"><a href="https://askbootstrap.com/category/premium-template/creative/">Creative</a> <span class="count">(8)</span></li>
<li class="cat-item cat-item-45"><a href="https://askbootstrap.com/category/premium-template/ecommerce/">eCommerce</a> <span class="count">(3)</span></li>
<li class="cat-item cat-item-41"><a href="https://askbootstrap.com/category/premium-template/popular-items/">Popular Items</a> <span class="count">(9)</span></li>
</ul>
</li>
</ul></div> </div>
<div class="block footer-widget-3">
<div id="pages-3" class="widget widget_pages"><span class="gamma widget-title">Page Links</span> <ul>
<li class="page_item page-item-303"><a href="https://askbootstrap.com/about-us/">About Askbootstrap</a></li>
<li class="page_item page-item-27 current_page_parent"><a href="https://askbootstrap.com/blog/">Blog</a></li>
<li class="page_item page-item-5"><a href="https://askbootstrap.com/cart/">Cart</a></li>
<li class="page_item page-item-306"><a href="https://askbootstrap.com/contact-us/">Contact Us</a></li>
<li class="page_item page-item-7"><a href="https://askbootstrap.com/my-account/">My account</a></li>
<li class="page_item page-item-113"><a href="https://askbootstrap.com/terms-and-conditions/">Terms and Conditions</a></li>
</ul>
</div> </div>
<div class="block footer-widget-4">
<div id="custom_html-3" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><a href="https://askbootstrap.com/" class="custom-logo-link" rel="home" itemprop="url"><img width="442" height="110" src="https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1.png" class="custom-logo" alt="Ask Bootstrap" itemprop="logo" srcset="https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1.png 442w, https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1-300x75.png 300w, https://askbootstrap.com/wp-content/uploads/2018/03/cropped-logo-1-416x104.png 416w" sizes="(max-width: 442px) 100vw, 442px"></a>
<p>Free & Premium Bootstrap templates & Themes, PSD templates, Graphics Item etc.
</p>
</div></div><div id="wpcom_social_media_icons_widget-3" class="widget widget_wpcom_social_media_icons_widget"><ul><li><a href="https://www.facebook.com/askbootstrap" class="genericon genericon-facebook" target="_blank"><span class="screen-reader-text">Facebook</span></a></li><li><a href="https://twitter.com/#/" class="genericon genericon-twitter" target="_blank"><span class="screen-reader-text">Twitter</span></a></li><li><a href="https://instagram.com/askbootstrap" class="genericon genericon-instagram" target="_blank"><span class="screen-reader-text">Instagram</span></a></li><li><a href="https://pinterest.com/askbootstrap" class="genericon genericon-pinterest" target="_blank"><span class="screen-reader-text">Pinterest</span></a></li><li><a href="https://plus.google.com/+askbootstrap" class="genericon genericon-googleplus" target="_blank"><span class="screen-reader-text">Google+</span></a></li></ul></div> </div>
</div><!-- .footer-widgets.row-1 --> <div class="site-info">
© Ask Bootstrap 2018 <br />
<a href="https://woocommerce.com" target="_blank" title="WooCommerce - The Best eCommerce Platform for WordPress" rel="author">Built with Storefront & WooCommerce</a>. </div><!-- .site-info -->
<div class="storefront-handheld-footer-bar">
<ul class="columns-3">
<li class="my-account">
<a href="https://askbootstrap.com/my-account/">My Account</a> </li>
<li class="search">
<a href="">Search</a> <div class="site-search">
<div class="widget woocommerce widget_product_search"><form role="search" method="get" class="woocommerce-product-search" action="https://askbootstrap.com/">
<label class="screen-reader-text" for="woocommerce-product-search-field-2">Search for:</label>
<input type="search" id="woocommerce-product-search-field-2" class="search-field" placeholder="Search products…" value="" name="s" />
<button type="submit" value="Search">Search</button>
<input type="hidden" name="post_type" value="product" />
</form>
</div> </div>
</li>
<li class="cart">
<a class="footer-cart-contents" href="https://askbootstrap.com/cart/" title="View your shopping cart">
<span class="count">0</span>
</a>
</li>
</ul>
</div>
</div><!-- .col-full -->
</footer><!-- #colophon -->
</div><!-- #page -->
<div style="display:none">
</div>
<script type="application/ld+json">{"@context":"https:\/\/schema.org\/","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":"1","item":{"name":"Home","@id":"https:\/\/askbootstrap.com"}},{"@type":"ListItem","position":"2","item":{"name":"Error 404"}}]}</script> <script type="text/javascript">
var c = document.body.className;
c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
document.body.className = c;
</script>
<link rel='stylesheet' id='genericons-css' href='https://askbootstrap.com/wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css' type='text/css' media='all' />
<script type='text/javascript' src='https://s0.wp.com/wp-content/js/devicepx-jetpack.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/askbootstrap.com\/cart\/","is_cart":"","cart_redirect_after_add":"no"};
/* ]]> */
</script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js'></script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js'></script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"};
/* ]]> */
</script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_189b34eba36c98e26474a2834bfce604","fragment_name":"wc_fragments_189b34eba36c98e26474a2834bfce604"};
/* ]]> */
</script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js'></script>
<script type='text/javascript'>
jQuery( 'body' ).bind( 'wc_fragments_refreshed', function() {
jQuery( 'body' ).trigger( 'jetpack-lazy-images-load' );
} );
</script>
<script type='text/javascript' src='https://secure.gravatar.com/js/gprofiles.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/jetpack/modules/wpgroho.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var storefrontScreenReaderText = {"expand":"Expand child menu","collapse":"Collapse child menu"};
/* ]]> */
</script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/themes/storefront/assets/js/navigation.min.js'></script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/themes/storefront/assets/js/skip-link-focus-fix.min.js'></script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/themes/storefront/assets/js/woocommerce/header-cart.min.js'></script>
<script type='text/javascript' src='https://askbootstrap.com/wp-includes/js/wp-embed.min.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var dgwt_wcas = {"t":{"sale_badge":"sale","featured_badge":"featured","category":"Category","tag":"tag"},"ajax_search_endpoint":"\/?wc-ajax=dgwt_wcas_ajax_search","ajax_details_endpoint":"\/?wc-ajax=dgwt_wcas_result_details","action_search":"dgwt_wcas_ajax_search","action_result_details":"dgwt_wcas_result_details","min_chars":"3","width":"auto","show_details_box":"","show_images":"1","show_price":"1","show_desc":"1","show_sale_badge":"","show_featured_badge":"","is_rtl":"","show_preloader":"1","preloader_url":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/ajax-search-for-woocommerce/backward-compatibility/1-1-7/jquery.dgwt-wcas.min.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _wp_google_translate_widget = {"lang":"en_US","layout":"0"};
/* ]]> */
</script>
<script type='text/javascript' src='https://askbootstrap.com/wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.js'></script>
<script type='text/javascript' src='//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit'></script>
<script type='text/javascript' src='https://stats.wp.com/e-201841.js' async='async' defer='defer'></script>
<script type='text/javascript'>
_stq = window._stq || [];
_stq.push([ 'view', {v:'ext',j:'1:6.5',blog:'143731127',post:'0',tz:'1',srv:'askbootstrap.com'} ]);
_stq.push([ 'clickTrackerInit', '143731127', '0' ]);
</script>
<footer class="py-5 text-center ">
<div class="container">
<p class="mt-0 mb-0">© Copyright 2018 AskBootstrap. All Rights Reserved</p>
<p class="mt-0 mb-0"> Made with <i class="fas fa-heart heart-icon"></i> by
<a class="text-primary" target="_blank" href="https://askbootstrap.com/">Ask Bootstrap</a>
</p>
</div>
</footer>
</body>
</html>