-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-single.html
819 lines (758 loc) · 40.3 KB
/
blog-single.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
811
812
813
814
815
816
817
818
819
<!DOCTYPE html>
<html>
<head>
<base href="/" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Title which will fit on all pages</title>
<meta itemprop="name" content="Title which will fit on all pages" />
<meta name="twitter:title" content="Title which will fit on all pages" />
<meta property="og:title" content="Title which will fit on all pages" />
<meta name="description" content="Description which will fit on all pages" />
<meta itemprop="description" content="Description which will fit on all pages" />
<meta name="twitter:description" content="Description which will fit on all pages" />
<meta property="og:description" content="Description which will fit on all pages" />
<meta itemprop="image" content="https://podhubvape.shop/img/bull.image.jpg" />
<meta name="twitter:image:src" content="https://podhubvape.shop/img/bull.image.jpg" />
<meta property="og:image" content="https://podhubvape.shop/img/bull.image.jpg" />
<link rel="icon" type="image/x-icon" href="img/favicon.jpg" />
<meta name="keywords" content="waw, web art work, server render, template" />
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800&display=swap"
rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Amatic+SC:400,700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/aos.css" />
<link rel="stylesheet" href="css/ionicons.min.css" />
<link rel="stylesheet" href="css/bootstrap-datepicker.css" />
<link rel="stylesheet" href="css/jquery.timepicker.css" />
<link rel="stylesheet" href="css/flaticon.css" />
<link rel="stylesheet" href="css/icomoon.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/index.css" />
<style>
:root {
--primary_color: {
{
{
variables.primary_color || "#e0dc10"
}
}
}
;
}
.social-links {
display: flex;
align-items: center;
}
.social-links__wrap a svg {
width: 32px;
height: 32px;
}
.social-links__wrap a .instagram {
width: 30px;
height: 30px;
}
.social-links__wrap a .telegram {
width: 28px;
height: 28px;
}
.social-links__wrap {
margin-right: 30px;
}
.social-links__wrap a {
margin-left: 15px;
}
.nav-link__cart {
padding: 0 !important;
display: flex !important;
align-items: center;
}
.icon-shopping_cart {
font-size: 29px;
}
@media screen and (max-width: 479px) {
.social-links__wrap a svg {
width: 22px;
height: 22px;
}
.social-links__wrap a .instagram {
width: 24px;
height: 24px;
}
.social-links__wrap a .telegram {
width: 22px;
height: 22px;
}
.social-links__wrap a {
margin-left: 10px;
}
.social-links__wrap {
margin-right: 20px;
}
.icon-shopping_cart {
font-size: 20px;
}
}
</style>
</head>
<body class="goto-here">
<!--
<div class="py-1 bg-primary">
<div class="container">
</div>
</div>
-->
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="/">Podhub</a>
<div class="burger-wrap">
<div class="burger"></div>
</div>
<div class="header__navigation">
<a href="/">Головна</a>
<a href="/shop">Товари</a>
</div>
<div class="social-links">
<div class="social-links__wrap">
<a href="https://t.me/Pod_Hub_Vape_Shop">
<svg class="telegram" data-name="Layer 1" id="Layer_1" viewBox="0 0 508.33 508.36"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
fill: #2ca3db;
fill-rule: evenodd;
}
.cls-2 {
fill: #fff;
}
</style>
</defs>
<path class="cls-1"
d="M485,29.72c11.45,15.13,16.61,40.21,19.15,70.7,3.36,45.5,4.71,100.1,6,156.52-1.67,57.47-2.35,115.43-6,156.52-2.88,31.54-9,52.66-19.22,65.47-13,12.79-37.94,23.59-73.5,26.15-43.25,3.69-96.61,3.65-155.48,5.1-65.44-1.12-109.82-.64-156.38-5.08-36.32-2.52-60.08-13.19-74.7-26.07-10.83-14.54-14-30-17-66.24-3.75-41.85-4.58-98.56-6-155.54C4,200.57,4.13,143.44,7.9,100.74,10.43,67.05,14.42,44.4,24.65,30,39,17.77,63.48,11.69,100,8.69c50-5.85,102.06-7,155.88-6.87,55.39.09,108.56,1.67,156,6.34,32,2.56,58.48,8.07,73.07,21.56Z"
transform="translate(-1.83 -1.82)"></path>
<path class="cls-2"
d="M378.92,125.44l-264.48,102c-18.05,7.24-17.94,17.31-3.29,21.8l66,20.59,25.24,77.38c3.07,8.47,1.56,11.83,10.45,11.83,6.86,0,9.91-3.13,13.73-6.86,2.43-2.38,16.86-16.41,33-32.08l68.61,50.7c12.63,7,21.74,3.36,24.89-11.73l45-212.24C402.66,128.35,391,120,378.92,125.44ZM187.46,265.11l148.68-93.8c7.42-4.5,14.23-2.08,8.64,2.88L217.48,289.05l-5,52.87Z"
id="path9" transform="translate(-1.83 -1.82)"></path>
</svg>
</a>
<a href="https://www.instagram.com/pod_hub_vape_shop?igsh=a3ZkdGx2b2IzYmQx">
<svg class="instagram" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style>
.cls-3 {
fill: url(#Nepojmenovaný_přechod_27);
}
.cls-4 {
fill: #fff;
}
</style>
<linearGradient gradientUnits="userSpaceOnUse" id="Nepojmenovaný_přechod_27" x1="328.27"
x2="183.73" y1="508.05" y2="3.95">
<stop offset="0" stop-color="#ffdb73"></stop>
<stop offset="0.08" stop-color="#fdad4e"></stop>
<stop offset="0.15" stop-color="#fb832e"></stop>
<stop offset="0.19" stop-color="#fa7321"></stop>
<stop offset="0.23" stop-color="#f6692f"></stop>
<stop offset="0.37" stop-color="#e84a5a"></stop>
<stop offset="0.48" stop-color="#e03675"></stop>
<stop offset="0.55" stop-color="#dd2f7f"></stop>
<stop offset="0.68" stop-color="#b43d97"></stop>
<stop offset="0.97" stop-color="#4d60d4"></stop>
<stop offset="1" stop-color="#4264db"></stop>
</linearGradient>
</defs>
<rect class="cls-3" height="465.06" rx="107.23" ry="107.23" width="465.06" x="23.47"
y="23.47"></rect>
<path class="cls-4"
d="M331,115.22a66.92,66.92,0,0,1,66.65,66.65V330.13A66.92,66.92,0,0,1,331,396.78H181a66.92,66.92,0,0,1-66.65-66.65V181.87A66.92,66.92,0,0,1,181,115.22H331m0-31H181c-53.71,0-97.66,44-97.66,97.66V330.13c0,53.71,44,97.66,97.66,97.66H331c53.71,0,97.66-44,97.66-97.66V181.87c0-53.71-43.95-97.66-97.66-97.66Z">
</path>
<path class="cls-4"
d="M256,198.13A57.87,57.87,0,1,1,198.13,256,57.94,57.94,0,0,1,256,198.13m0-31A88.87,88.87,0,1,0,344.87,256,88.87,88.87,0,0,0,256,167.13Z">
</path>
<circle class="cls-4" cx="346.81" cy="163.23" r="21.07"></circle>
</svg>
</a>
<a href="https://www.tiktok.com/@pod.hub.shop">
<svg id="Apple" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-6 {
fill: #000000;
}
.cls-7 {
fill: #fff;
}
.cls-8 {
fill: #ff004f;
}
</style>
</defs>
<rect height="427.97" rx="71.15" width="427.97" x="42.01" y="42.95" class="cls-6"></rect>
<path class="cls-6"
d="M389.39,221.92V164.85c-74.6-3.15-77-70.94-77-77.31v-.48H254.73V309.33h0a45.66,45.66,0,1,1-32.36-43.71V206.76a104.57,104.57,0,0,0-13.32-.85A103.42,103.42,0,1,0,312.47,309.33c0-1.45,0-2.89-.1-4.32V195.56C338.92,219.85,389.39,221.92,389.39,221.92Z">
</path>
<path class="cls-7"
d="M406.37,236V178.9c-74.61-3.15-77-70.94-77-77.31v-.48H271.71V323.38h0a45.66,45.66,0,1,1-32.36-43.7V220.81A104.57,104.57,0,0,0,226,220,103.42,103.42,0,1,0,329.45,323.38c0-1.45,0-2.89-.1-4.32V209.61C355.9,233.9,406.37,236,406.37,236Z">
</path>
<path class="cls-8"
d="M313.82,101.11c2.78,15.14,10.9,38.81,34.57,52.66-18.09-21.07-19-48.26-19-52.18v-.48Z">
</path>
<path class="cls-8"
d="M406.37,236V178.9a106.46,106.46,0,0,1-17-2v44.95s-50.47-2.07-77-26.36V304.91c.06,1.43.1,2.87.1,4.32a103.43,103.43,0,0,1-160.72,86.1,103.41,103.41,0,0,0,177.7-71.95c0-1.45,0-2.89-.1-4.32V209.61C355.9,233.9,406.37,236,406.37,236Z">
</path>
<path class="cls-8"
d="M222.37,265.53a45.69,45.69,0,0,0-33.19,84.85,45.69,45.69,0,0,1,50.17-70.7V220.81A104.57,104.57,0,0,0,226,220c-1.23,0-2.44,0-3.66.07Z">
</path>
</svg>
</a>
<a href="https://www.youtube.com/@PODHUBVapeShop">
<svg enable-background="new 0 0 32 32" id="Layer_1" version="1.0" viewBox="0 0 32 32"
xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<path
d="M31.67,9.179c0,0-0.312-2.353-1.271-3.389c-1.217-1.358-2.58-1.366-3.205-1.443C22.717,4,16.002,4,16.002,4 h-0.015c0,0-6.715,0-11.191,0.347C4.171,4.424,2.809,4.432,1.591,5.79C0.633,6.826,0.32,9.179,0.32,9.179S0,11.94,0,14.701v2.588 c0,2.763,0.32,5.523,0.32,5.523s0.312,2.352,1.271,3.386c1.218,1.358,2.815,1.317,3.527,1.459C7.677,27.919,15.995,28,15.995,28 s6.722-0.012,11.199-0.355c0.625-0.08,1.988-0.088,3.205-1.446c0.958-1.034,1.271-3.386,1.271-3.386s0.32-2.761,0.32-5.523v-2.588 C31.99,11.94,31.67,9.179,31.67,9.179z"
fill="#E02F2F"></path>
<polygon fill="#FFFFFF" points="12,10 12,22 22,16 "></polygon>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
</a>
<a href="tel:+380930935126">
<svg viewBox="0 0 24 24" fill="#82ae46" xmlns="http://www.w3.org/2000/svg">
<path d="M20 10.999h2C22 5.869 18.127 2 12.99 2v2C17.052 4 20 6.943 20 10.999z" />
<path
d="M13 8c2.103 0 3 .897 3 3h2c0-3.225-1.775-5-5-5v2zm3.422 5.443a1.001 1.001 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.29.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.323 21 17.705 21c.202 0 .326-.006.359-.008a.992.992 0 0 0 .648-.291l1.86-2.171a1 1 0 0 0-.086-1.391l-4.064-3.696z" />
</svg>
</a>
</div>
<div class="ml-auto ml-auto--desktop">
<a href="/checkout" class="nav-link__cart nav-link cta cta-colored"><span
class="icon-shopping_cart"></span> <span id="cartCounter">0</span></a>
</div>
</div>
</div>
</nav>
<!-- END nav -->
<div class="hero-wrap hero-bread" style="background-image: url('images/bg_1.jpg');">
<div class="container">
<div class="row no-gutters slider-text align-items-center justify-content-center">
<div class="col-md-9 ftco-animate text-center">
<p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home</a></span> <span>Blog</span></p>
<h1 class="mb-0 bread">Blog</h1>
</div>
</div>
</div>
</div>
<section class="ftco-section ftco-degree-bg">
<div class="container">
<div class="row">
<div class="col-lg-8 ftco-animate">
<h2 class="mb-3">Organic foods is good for your health</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, eius mollitia suscipit, quisquam doloremque distinctio perferendis et doloribus unde architecto optio laboriosam porro adipisci sapiente officiis nemo accusamus ad praesentium? Esse minima nisi et. Dolore perferendis, enim praesentium omnis, iste doloremque quia officia optio deserunt molestiae voluptates soluta architecto tempora.</p>
<p>
<img src="images/image_1.jpg" alt="" class="img-fluid">
</p>
<p>Molestiae cupiditate inventore animi, maxime sapiente optio, illo est nemo veritatis repellat sunt doloribus nesciunt! Minima laborum magni reiciendis qui voluptate quisquam voluptatem soluta illo eum ullam incidunt rem assumenda eveniet eaque sequi deleniti tenetur dolore amet fugit perspiciatis ipsa, odit. Nesciunt dolor minima esse vero ut ea, repudiandae suscipit!</p>
<h2 class="mb-3 mt-5">#2. Creative WordPress Themes</h2>
<p>Temporibus ad error suscipit exercitationem hic molestiae totam obcaecati rerum, eius aut, in. Exercitationem atque quidem tempora maiores ex architecto voluptatum aut officia doloremque. Error dolore voluptas, omnis molestias odio dignissimos culpa ex earum nisi consequatur quos odit quasi repellat qui officiis reiciendis incidunt hic non? Debitis commodi aut, adipisci.</p>
<p>
<img src="images/image_2.jpg" alt="" class="img-fluid">
</p>
<p>Quisquam esse aliquam fuga distinctio, quidem delectus veritatis reiciendis. Nihil explicabo quod, est eos ipsum. Unde aut non tenetur tempore, nisi culpa voluptate maiores officiis quis vel ab consectetur suscipit veritatis nulla quos quia aspernatur perferendis, libero sint. Error, velit, porro. Deserunt minus, quibusdam iste enim veniam, modi rem maiores.</p>
<p>Odit voluptatibus, eveniet vel nihil cum ullam dolores laborum, quo velit commodi rerum eum quidem pariatur! Quia fuga iste tenetur, ipsa vel nisi in dolorum consequatur, veritatis porro explicabo soluta commodi libero voluptatem similique id quidem? Blanditiis voluptates aperiam non magni. Reprehenderit nobis odit inventore, quia laboriosam harum excepturi ea.</p>
<p>Adipisci vero culpa, eius nobis soluta. Dolore, maxime ullam ipsam quidem, dolor distinctio similique asperiores voluptas enim, exercitationem ratione aut adipisci modi quod quibusdam iusto, voluptates beatae iure nemo itaque laborum. Consequuntur et pariatur totam fuga eligendi vero dolorum provident. Voluptatibus, veritatis. Beatae numquam nam ab voluptatibus culpa, tenetur recusandae!</p>
<p>Voluptas dolores dignissimos dolorum temporibus, autem aliquam ducimus at officia adipisci quasi nemo a perspiciatis provident magni laboriosam repudiandae iure iusto commodi debitis est blanditiis alias laborum sint dolore. Dolores, iure, reprehenderit. Error provident, pariatur cupiditate soluta doloremque aut ratione. Harum voluptates mollitia illo minus praesentium, rerum ipsa debitis, inventore?</p>
<div class="tag-widget post-tag-container mb-5 mt-5">
<div class="tagcloud">
<a href="#" class="tag-cloud-link">Life</a>
<a href="#" class="tag-cloud-link">Sport</a>
<a href="#" class="tag-cloud-link">Tech</a>
<a href="#" class="tag-cloud-link">Travel</a>
</div>
</div>
<div class="about-author d-flex p-4 bg-light">
<div class="bio align-self-md-center mr-4">
<img src="images/person_1.jpg" alt="Image placeholder" class="img-fluid mb-4">
</div>
<div class="desc align-self-md-center">
<h3>Lance Smith</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ducimus itaque, autem necessitatibus voluptate quod mollitia delectus aut, sunt placeat nam vero culpa sapiente consectetur similique, inventore eos fugit cupiditate numquam!</p>
</div>
</div>
<div class="pt-5 mt-5">
<h3 class="mb-5">6 Comments</h3>
<ul class="comment-list">
<li class="comment">
<div class="vcard bio">
<img src="images/person_1.jpg" alt="Image placeholder">
</div>
<div class="comment-body">
<h3>John Doe</h3>
<div class="meta">June 27, 2018 at 2:21pm</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
<p><a href="#" class="reply">Reply</a></p>
</div>
</li>
<li class="comment">
<div class="vcard bio">
<img src="images/person_1.jpg" alt="Image placeholder">
</div>
<div class="comment-body">
<h3>John Doe</h3>
<div class="meta">June 27, 2018 at 2:21pm</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
<p><a href="#" class="reply">Reply</a></p>
</div>
<ul class="children">
<li class="comment">
<div class="vcard bio">
<img src="images/person_1.jpg" alt="Image placeholder">
</div>
<div class="comment-body">
<h3>John Doe</h3>
<div class="meta">June 27, 2018 at 2:21pm</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
<p><a href="#" class="reply">Reply</a></p>
</div>
<ul class="children">
<li class="comment">
<div class="vcard bio">
<img src="images/person_1.jpg" alt="Image placeholder">
</div>
<div class="comment-body">
<h3>John Doe</h3>
<div class="meta">June 27, 2018 at 2:21pm</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
<p><a href="#" class="reply">Reply</a></p>
</div>
<ul class="children">
<li class="comment">
<div class="vcard bio">
<img src="images/person_1.jpg" alt="Image placeholder">
</div>
<div class="comment-body">
<h3>John Doe</h3>
<div class="meta">June 27, 2018 at 2:21pm</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
<p><a href="#" class="reply">Reply</a></p>
</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="comment">
<div class="vcard bio">
<img src="images/person_1.jpg" alt="Image placeholder">
</div>
<div class="comment-body">
<h3>John Doe</h3>
<div class="meta">June 27, 2018 at 2:21pm</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
<p><a href="#" class="reply">Reply</a></p>
</div>
</li>
</ul>
<!-- END comment-list -->
<div class="comment-form-wrap pt-5">
<h3 class="mb-5">Leave a comment</h3>
<form action="#" class="p-5 bg-light">
<div class="form-group">
<label for="name">Name *</label>
<input type="text" class="form-control" id="name">
</div>
<div class="form-group">
<label for="email">Email *</label>
<input type="email" class="form-control" id="email">
</div>
<div class="form-group">
<label for="website">Website</label>
<input type="url" class="form-control" id="website">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea name="" id="message" cols="30" rows="10" class="form-control"></textarea>
</div>
<div class="form-group">
<input type="submit" value="Post Comment" class="btn py-3 px-4 btn-primary">
</div>
</form>
</div>
</div>
</div> <!-- .col-md-8 -->
<div class="col-lg-4 sidebar ftco-animate">
<div class="sidebar-box">
<form action="#" class="search-form">
<div class="form-group">
<span class="icon ion-ios-search"></span>
<input type="text" class="form-control" placeholder="Search...">
</div>
</form>
</div>
<div class="sidebar-box ftco-animate">
<h3 class="heading">Categories</h3>
<ul class="categories">
<li><a href="#">Vegetables <span>(12)</span></a></li>
<li><a href="#">Fruits <span>(22)</span></a></li>
<li><a href="#">Juice <span>(37)</span></a></li>
<li><a href="#">Dries <span>(42)</span></a></li>
</ul>
</div>
<div class="sidebar-box ftco-animate">
<h3 class="heading">Recent Blog</h3>
<div class="block-21 mb-4 d-flex">
<a class="blog-img mr-4" style="background-image: url(images/image_1.jpg);"></a>
<div class="text">
<h3 class="heading-1"><a href="#">Even the all-powerful Pointing has no control about the blind texts</a></h3>
<div class="meta">
<div><a href="#"><span class="icon-calendar"></span> April 09, 2019</a></div>
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
</div>
</div>
</div>
<div class="block-21 mb-4 d-flex">
<a class="blog-img mr-4" style="background-image: url(images/image_2.jpg);"></a>
<div class="text">
<h3 class="heading-1"><a href="#">Even the all-powerful Pointing has no control about the blind texts</a></h3>
<div class="meta">
<div><a href="#"><span class="icon-calendar"></span> April 09, 2019</a></div>
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
</div>
</div>
</div>
<div class="block-21 mb-4 d-flex">
<a class="blog-img mr-4" style="background-image: url(images/image_3.jpg);"></a>
<div class="text">
<h3 class="heading-1"><a href="#">Even the all-powerful Pointing has no control about the blind texts</a></h3>
<div class="meta">
<div><a href="#"><span class="icon-calendar"></span> April 09, 2019</a></div>
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
</div>
</div>
</div>
</div>
<div class="sidebar-box ftco-animate">
<h3 class="heading">Tag Cloud</h3>
<div class="tagcloud">
<a href="#" class="tag-cloud-link">fruits</a>
<a href="#" class="tag-cloud-link">tomatoe</a>
<a href="#" class="tag-cloud-link">mango</a>
<a href="#" class="tag-cloud-link">apple</a>
<a href="#" class="tag-cloud-link">carrots</a>
<a href="#" class="tag-cloud-link">orange</a>
<a href="#" class="tag-cloud-link">pepper</a>
<a href="#" class="tag-cloud-link">eggplant</a>
</div>
</div>
<div class="sidebar-box ftco-animate">
<h3 class="heading">Paragraph</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ducimus itaque, autem necessitatibus voluptate quod mollitia delectus aut, sunt placeat nam vero culpa sapiente consectetur similique, inventore eos fugit cupiditate numquam!</p>
</div>
</div>
</div>
</div>
</section>
<footer class="ftco-footer ftco-section">
<div class="container">
<div class="row">
<div class="mouse">
<a href="#" class="mouse-icon">
<div class="mouse-wheel">
<span class="ion-ios-arrow-up"></span>
</div>
</a>
</div>
</div>
<div class="row mb-5">
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">
<strong>POD HUB</strong>
</h2>
<p>
POD HUB | Vape Shop - пропонуємо широкий вибір POD систем, комплектуючих до них, рідини
найвищої якості. <br> Оффлайн магазини з можливістю доставки по місту та доставка по
Україні.
Доступні ціни, швидка доставка, сертифікована продукція.
<br> POD HUB - улюблене місце людей, які цінують якісну консультацію та сертифіковану
продукцію.
</p>
<!-- <ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
</ul> -->
</div>
</div>
<!-- <div class="col-md">
<div class="ftco-footer-widget mb-4 ml-md-5">
<h2 class="ftco-heading-2"><strong>Меню</strong></h2>
<ul class="list-unstyled">
<li><a href="#" class="py-2 d-block">Товари</a></li>
<li><a href="#" class="py-2 d-block">About</a></li>
<li><a href="#" class="py-2 d-block">Journal</a></li>
<li><a href="#" class="py-2 d-block">Contact Us</a></li>
</ul>
</div>
</div> -->
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2"><strong>Є питання?</strong></h2>
<div class="block-23 mb-3">
<ul>
<li>
<a><span class="icon"><svg viewBox="0 0 24 24" height="20px" width="20px"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-9 {
fill: #232323;
}
</style>
</defs>
<path class="cls-9"
d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm3.707,14.707a1,1,0,0,1-1.414,0l-3-3A1,1,0,0,1,11,12V6a1,1,0,0,1,2,0v5.586l2.707,2.707A1,1,0,0,1,15.707,15.707Z" />
</svg></span><span class="text">Графік роботи: <br>з
9:00 до 21:00.</span></a>
</li>
<li>
<a href="tel:+380930935126"><span class="icon"><svg viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg" height="17px" width="17px">
<path
d="M511.2 387l-23.25 100.8c-3.266 14.25-15.79 24.22-30.46 24.22C205.2 512 0 306.8 0 54.5c0-14.66 9.969-27.2 24.22-30.45l100.8-23.25C139.7-2.602 154.7 5.018 160.8 18.92l46.52 108.5c5.438 12.78 1.77 27.67-8.98 36.45L144.5 207.1c33.98 69.22 90.26 125.5 159.5 159.5l44.08-53.8c8.688-10.78 23.69-14.51 36.47-8.975l108.5 46.51C506.1 357.2 514.6 372.4 511.2 387z" />
</svg></span><span class="text">+38 0930 9351 26</span></a>
</li>
<li>
<a href="https://t.me/Pod_Hub_Vape_Shop"><span class="icon"><svg
viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg" height="22px"
width="22px">
<path
d="M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" />
</svg></span><span class="text">Telegram</span></a>
</li>
<li>
<a href="https://www.instagram.com/pod_hub_vape_shop?igsh=a3ZkdGx2b2IzYmQx"><span
class="icon"><svg viewBox="0 0 24 24" height="24px" width="24px"
xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M0 0h24v24H0z" fill="none" />
<path
d="M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153a4.908 4.908 0 0 1 1.153 1.772c.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 0 1-1.772-1.153 4.904 4.904 0 0 1-1.153-1.772c-.248-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.217-1.79.465-2.428a4.88 4.88 0 0 1 1.153-1.772A4.897 4.897 0 0 1 5.45 2.525c.638-.248 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm6.5-.25a1.25 1.25 0 0 0-2.5 0 1.25 1.25 0 0 0 2.5 0zM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6z"
fill-rule="nonzero" />
</g>
</svg>
</span><span class="text">Instagram</span></a>
</li>
<li><a href="https://www.tiktok.com/@pod.hub.shop"><span class="icon"><svg
viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg" height="18px"
width="18px">
<path
d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" />
</svg>
</span><span class="text">Tiktok</span></a></li>
<li><a href="https://www.youtube.com/@PODHUBVapeShop"><span class="icon"><svg
height="20px" width="20px"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"
version="1.1" viewBox="0 0 512 512" xml:space="preserve"
xmlns="http://www.w3.org/2000/svg" xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M501.303,132.765c-5.887,-22.03 -23.235,-39.377 -45.265,-45.265c-39.932,-10.7 -200.038,-10.7 -200.038,-10.7c0,0 -160.107,0 -200.039,10.7c-22.026,5.888 -39.377,23.235 -45.264,45.265c-10.697,39.928 -10.697,123.238 -10.697,123.238c0,0 0,83.308 10.697,123.232c5.887,22.03 23.238,39.382 45.264,45.269c39.932,10.696 200.039,10.696 200.039,10.696c0,0 160.106,0 200.038,-10.696c22.03,-5.887 39.378,-23.239 45.265,-45.269c10.696,-39.924 10.696,-123.232 10.696,-123.232c0,0 0,-83.31 -10.696,-123.238Zm-296.506,200.039l0,-153.603l133.019,76.802l-133.019,76.801Z"
style="fill-rule:nonzero;" />
</svg></span>
</span><span class="text">Youtube</span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">
<strong>Наші адреси</strong>
</h2>
<div class="block-23 mb-3">
<ul>
<li>
<a href="https://maps.app.goo.gl/CA6dnBYgmKr2t8Dz5"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Київська, 1А,
Жмеринка, Вінницька область, 23100</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/CryC4BBHLAHSXbzP7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Героїв Небесної
сотні, 1А, Кам'янець-Подільський, Хмельницька область, 32301</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/cJTyX8UBxPdv6SKd6"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Миру, 4, Кам'янець-Подільський,
Хмельницька область, 32327</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/jN5HUgvP8UK7UG2s8"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">Немирівське шосе, 94Е,
Вінниця, Вінницька область, 21006</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/Gyy69zQRHaWpAwyq7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Святого Миколая, Бар, Вінницька
область, 23000</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/JK6ERQRKBdUrknueA"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Петра Болбочана,
1, Хмельницький, Хмельницька область, 29000</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/BMNJbwduV5UFTrCY7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Житомирська,
23А, Бердичів, Житомирська область, 13300</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/N7ZgfFswt7QEPHqFA"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Європейська, 99,
Бердичів, Житомирська область, 13300</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/gupNLGLmGxrHHBKA7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Незалежності, 9/8, Умань, Черкаська
область, 20300</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/ZRhnyQc9gBvbsAzA8"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Європейська, 29, Умань, Черкаська
область, 20300</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
All rights reserved | PodHub
<i class="icon-heart color-danger" aria-hidden="true"></i>
</p>
</div>
</div>
</div>
</footer>
<!-- loader -->
<div id="ftco-loader" class="show fullscreen">
<svg class="circular" width="48px" height="48px">
<circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee" />
<circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10"
stroke="#F96D00" />
</svg>
</div>
<script>
const cartCounter = document.getElementById("cartCounter");
const updateCartCounter = () => {
const order = JSON.parse(localStorage.getItem("order")) || { products: [] };
const productCount = order.products.length;
if (cartCounter) {
cartCounter.textContent = productCount;
} else {
console.error("Cart counter element not found.");
}
};
updateCartCounter();
window.addEventListener("storage", (event) => {
if (event.key === "order") {
updateCartCounter();
}
});
</script>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.animateNumber.min.js"></script>
<script src="js/bootstrap-datepicker.js"></script>
<script src="js/scrollax.min.js"></script>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
<script src="js/google-map.js"></script>
<script src="js/main.js"></script>
<script src="js/index.js"></script>
<script src="js/commerceproduct.js" type="module"></script>
</body>
</html>