-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-video.html
More file actions
1214 lines (1186 loc) · 55.1 KB
/
single-video.html
File metadata and controls
1214 lines (1186 loc) · 55.1 KB
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
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Vixto Modern Personal Blog HTML5 Template"
/>
<meta name="author" content="DynamicLayers" />
<title>Vixto | Modern Personal Blog HTML5 Template</title>
<link
rel="shortcut icon"
type="image/x-icon"
href="assets/img/favicon.png"
/>
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/venobox.min.css" />
<link rel="stylesheet" href="assets/css/swiper.min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">
You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
your experience.
</p>
<![endif]-->
<div class="site-preloader">
<div class="loader-text" data-text="Vixto">Vixto</div>
</div>
<!-- /.site-preloader -->
<header class="main-header">
<div class="top-header">
<div class="container">
<div class="top-header-inner">
<div class="top-left">
<div class="ticker-wrap">
<div class="ticker-title">
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
>
<path
d="M420.001-143.082v-276.919H307.694v-439.998H653.46l-73.461 255.768h158.076L420.001-143.082Z"
/></svg
><span>Trending:</span>
</div>
<div class="ticker-slide-wrap">
<div class="swiper ticker-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="single.html"
>Former CIA hacker sentenced to 40 years in
prison...</a
>
</div>
<div class="swiper-slide">
<a href="single.html"
>US approves $4bn sale of armed drones to India...</a
>
</div>
<div class="swiper-slide">
<a href="single.html"
>Facebook at 20: Four ways it changed the world...</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="top-right">
<ul class="top-right-info">
<li>
<a
href="/cdn-cgi/l/email-protection#3d4b544549527d58455c504d5158135e5250"
><span
class="__cf_email__"
data-cfemail="4d3b243539220d28352c203d2128632e2220"
>[email protected]</span
></a
>
</li>
<li><a href="tel:+123456789">+123 456 789</a></li>
</ul>
<ul class="header-social">
<li>
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 320 512"
>
<path
d="M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z"
/>
</svg>
</a>
</li>
<li>
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"
/>
</svg>
</a>
</li>
<li>
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
>
<path
d="M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"
/>
</svg>
</a>
</li>
<li>
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
/>
</svg>
</a>
</li>
<li>
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
d="M448 209.9a210.1 210.1 0 0 1 -122.8-39.3V349.4A162.6 162.6 0 1 1 185 188.3V278.2a74.6 74.6 0 1 0 52.2 71.2V0l88 0a121.2 121.2 0 0 0 1.9 22.2h0A122.2 122.2 0 0 0 381 102.4a121.4 121.4 0 0 0 67 20.1z"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /.top-header -->
<div class="bottom-header">
<div class="container">
<div class="main-header-wapper">
<div class="site-logo">
<a href="index.html"><span class="site-title">Vixto</span></a>
</div>
<div class="main-header-info">
<div class="header-menu-wrap">
<ul class="nav-menu">
<li>
<a href="index.html" data-text="Home">Home</a>
<ul>
<li><a href="index.html">Home Default</a></li>
<li><a href="index-2.html">Home Modern</a></li>
</ul>
</li>
<li>
<a href="archive.html" data-text="Pages">Pages</a>
<ul>
<li>
<a href="archive.html">Archive</a>
<ul>
<li><a href="category.html">Category</a></li>
<li><a href="author.html">Author</a></li>
<li><a href="tag.html">Tags</a></li>
</ul>
</li>
<li><a href="subscribe.html">Subscribe</a></li>
<li><a href="search.html">Search</a></li>
<li><a href="404.html">404 Error</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</li>
<li>
<a href="blog-standard.html" data-text="Post Layout"
>Post Layout</a
>
<ul>
<li><a href="blog-standard.html">Standard</a></li>
<li><a href="blog-grid.html">Grid Layout</a></li>
<li><a href="blog-list.html">List Layout</a></li>
</ul>
</li>
<li>
<a href="single.html" data-text="Post Formats"
>Post Formats</a
>
<ul>
<li><a href="single.html">Standard</a></li>
<li><a href="single-gallery.html">Gallary</a></li>
<li>
<a href="single-left-sidebar.html">Left Sidebar</a>
</li>
<li>
<a href="single-right-sidebar.html">Right Sidebar</a>
</li>
<li><a href="single-video.html">Video</a></li>
</ul>
</li>
</ul>
</div>
<!--/.header-menu-wrap-->
<div class="menu-right-item">
<button class="menu-search">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 14.811 14.811"
>
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.5"
transform="translate(-2.25 -2.25)"
>
<circle
cx="5.5"
cy="5.5"
r="5.5"
data-name="Ellipse 7"
transform="translate(3 3)"
></circle>
<path d="m16 16-3.142-3.142"></path>
</g>
</svg>
</button>
<button class="mobile-menu-action">
<span></span>
<span></span>
<span></span>
</button>
<a
href="subscribe.html"
class="default-btn text-anim"
data-text="Subscribe"
>Subscribe</a
>
</div>
</div>
</div>
</div>
</div>
<!-- /.bottom-header -->
</header>
<!--/.main-header-->
<div id="popup-search-box">
<div class="box-inner-wrap d-flex align-items-center">
<form id="form" action="#" method="get" role="search">
<input
id="popup-search"
type="text"
name="s"
placeholder="Type keywords here..."
/>
<button id="popup-search-button" type="submit" name="submit">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 14.811 14.811"
>
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.5"
transform="translate(-2.25 -2.25)"
>
<circle
cx="5.5"
cy="5.5"
r="5.5"
data-name="Ellipse 7"
transform="translate(3 3)"
></circle>
<path d="m16 16-3.142-3.142"></path>
</g>
</svg>
</button>
</form>
<div class="search-close">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
height="24"
viewBox="0 -960 960 960"
width="24"
>
<path
d="M256-213.847 213.847-256l224-224-224-224L256-746.153l224 224 224-224L746.153-704l-224 224 224 224L704-213.847l-224-224-224 224Z"
/>
</svg>
</div>
</div>
</div>
<!--/.popup-search-box-->
<div id="searchbox-overlay"></div>
<!--/.searchbox-overlay-->
<section class="single-page single-video no-sidebar padding-bottom">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<div class="single-post-thumb">
<div style="padding: 56.25% 0 0 0; position: relative">
<iframe
src="https://player.vimeo.com/video/916386549?badge=0&autopause=0&player_id=0&app_id=58479"
frameborder="0"
allow="autoplay; fullscreen; picture-in-picture"
style="
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
"
title="video (1080p)"
></iframe>
</div>
</div>
<header class="entry-header">
<ul class="post-meta">
<li><a href="category.html">Travel</a></li>
<li class="sep"></li>
<li><a href="category.html" class="date">02.08.2024</a></li>
</ul>
<h2 class="post-title">
The history behind some of the <br />unique first tourist sites
</h2>
</header>
<div class="single-post-content">
<p>
Through vivid storytelling, immersive photography, and
insightful commentary, I strive to transport you to the heart of
each destination, igniting your wanderlust and inspiring your
next adventure. Whether I'm traversing bustling city streets,
trekking through serene landscapes, or immersing myself in local
traditions, my aim is to capture the essence of each place and
share it with you.
</p>
<p>
From bustling metropolises to remote villages off the beaten
path, I delve into the unique flavors, sights, and sounds that
define every corner of the globe. Through my travels, I aim to
not only showcase the beauty of our world but also foster
cultural understanding, encourage sustainable travel practices,
and promote responsible tourism.
</p>
<blockquote>
<svg
width="54"
height="40"
viewBox="0 0 54 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_311_7235)">
<path
d="M11.3087 24.2569V23.2569H10.3087H1.60408C1.28718 23.2569 1 22.9905 1 22.6238V1.63309C1 1.26637 1.28718 1 1.60408 1H22.2219C22.5388 1 22.826 1.26637 22.826 1.63309V22.6238C22.826 22.6933 22.8149 22.7621 22.7934 22.8275L22.7929 22.8289L17.6385 38.5721C17.5519 38.8371 17.3159 39 17.0675 39H11.9128C11.596 39 11.3087 38.7334 11.3087 38.3669V24.2569Z"
stroke="currentColor"
stroke-width="2"
/>
<path
d="M41.3087 24.2569V23.2569H40.3087H31.6041C31.2872 23.2569 31 22.9905 31 22.6238V1.63309C31 1.26637 31.2872 1 31.6041 1H52.2219C52.5388 1 52.826 1.26637 52.826 1.63309V22.6238C52.826 22.6933 52.8149 22.7621 52.7934 22.8275L52.7929 22.8289L47.6385 38.5721C47.5519 38.8371 47.3159 39 47.0675 39H41.9128C41.596 39 41.3087 38.7334 41.3087 38.3669V24.2569Z"
stroke="currentColor"
stroke-width="2"
/>
</g>
<defs>
<clipPath id="clip0_311_7235">
<rect width="54" height="40" />
</clipPath>
</defs>
</svg>
<p>
"No one realizes how beautiful it is to travel until he comes
home and rests his head on his old, familiar pillow."
<span>Félix Lengyel</span>
</p>
</blockquote>
<p>
From bustling metropolises to remote villages off the beaten
path, I delve into the unique flavors, sights, and sounds that
define every corner of the globe. Through my travels, I aim to
not only showcase the beauty of our world but also foster
cultural understanding, encourage sustainable travel practices,
and promote responsible tourism.
</p>
<div class="single-post-gallary">
<div><img src="assets/img/post-1.jpg" alt="img" /></div>
<div><img src="assets/img/post-2.jpg" alt="img" /></div>
<div><img src="assets/img/post-3.jpg" alt="img" /></div>
</div>
<h3>Enjoy the afternoon at Canggu, Bali, Indonesia.</h3>
<p>
From the sun-kissed shores of tropical paradises to the
snow-capped peaks of majestic mountains, I traverse landscapes
both familiar and exotic, sharing the stories of the places I
encounter and the people who call them home.
</p>
<p>
Through the lens of my camera and the strokes of my words, I
strive to capture the essence of each destination, from the
tantalizing aromas of street food markets to the awe-inspiring
architecture of ancient monuments. But beyond the surface, I
delve deeper, exploring the soul of each locale—the traditions,
the history, and the untold narratives that shape its identity.
</p>
<div class="single-post-list-wrap">
<ul class="single-post-list">
<li>Highlight the most iconic places.</li>
<li>Dive deep into the local and particular city.</li>
<li>Offering tips to fully immerse themselves.</li>
<li>Create an action-packed itinerary adrenaline.</li>
<li>Share less destinations or attractions.</li>
</ul>
<ul class="single-post-list">
<li>Explore the culinary delights of a destination.</li>
<li>Offer advice and personal for solo travelers.</li>
<li>Recommendations for solo-friendly destinations.</li>
<li>Provide suggestions for friendly attractions.</li>
<li>Discuss sustainable travel practices.</li>
</ul>
</div>
<h3>Budget Travel Guide to [Destination]:</h3>
<p>
Yet, my journey extends beyond mere exploration. With a
commitment to sustainability and cultural sensitivity, I
advocate for responsible travel practices, aiming to leave a
positive impact on the places I visit and the communities I
engage with. So, whether you're a seasoned globetrotter or an
armchair adventurer, join me as we embark on a boundless voyage
of discovery, where every destination is a chapter waiting to be
written, and every encounter is a story waiting to be told.
Welcome aboard!"
</p>
<h3>Conclusion:</h3>
<p>
In conclusion, as the sun sets on this chapter of exploration, I
am reminded of the infinite beauty and diversity our world
holds. Through the winding streets of ancient cities, the
pristine shores of remote islands, and the warm embrace of
cultures, I have discovered that the true essence of travel lies
not only in the destinations we visit but in the connections we
forge and the experiences we carry with us.
</p>
</div>
<footer class="entry-footer">
<ul class="tag-list">
<li><a href="tag.html">Fashion</a></li>
<li><a href="tag.html">Photos</a></li>
<li><a href="tag.html">Travel</a></li>
<li><a href="tag.html">Lifestyle</a></li>
</ul>
<ul class="post-social-share">
<li class="facebook">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
fill="currentColor"
>
<path
d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"
></path></svg
></a>
</li>
<li class="twitter">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
fill="currentColor"
>
<path
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"
></path></svg
></a>
</li>
<li class="instagram">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
fill="currentColor"
>
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
></path></svg
></a>
</li>
<li class="pinterest">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
fill="currentColor"
>
<path
d="M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3 .8-3.4 5-20.3 6.9-28.1 .6-2.5 .3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"
/></svg
></a>
</li>
</ul>
</footer>
<div class="single-post-item">
<h3>Related Articles</h3>
<div class="related-post-wrap">
<article>
<div class="post-card horizontal-card img-hover-move">
<div class="post-thumb media">
<a href="single.html">
<img src="assets/img/post-1.jpg" alt="thumb" />
</a>
</div>
<div class="post-content">
<ul class="post-meta">
<li><a href="category.html">Lifestyle</a></li>
<li class="sep"></li>
<li>
<a href="category.html" class="date">05.07.2024</a>
</li>
</ul>
<h3>
<a href="single.html" class="text-hover"
>In this Austrian town, extreme popular</a
>
</h3>
<ul class="post-card-footer">
<li>
<a href="single.html" class="read-more"
>Continue Reading</a
>
</li>
<li>
<a href="#" class="comment">
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="M250.001-410.001h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm609.998 531.537L718.461-260.001H172.309q-30.308 0-51.308-21t-21-51.308v-455.382q0-30.308 21-51.308t51.308-21h615.382q30.308 0 51.308 21t21 51.308v669.227ZM172.309-320h571.69L800-264.615v-523.076q0-4.616-3.846-8.463-3.847-3.846-8.463-3.846H172.309q-4.616 0-8.463 3.846-3.846 3.847-3.846 8.463v455.382q0 4.616 3.846 8.463 3.847 3.846 8.463 3.846ZM160-320V-800v480Z"
/></svg
><span>04</span>
</a>
</li>
</ul>
</div>
</div>
</article>
<article>
<div class="post-card horizontal-card img-hover-move">
<div class="post-thumb media">
<a href="single.html">
<img src="assets/img/post-2.jpg" alt="thumb" />
</a>
</div>
<div class="post-content">
<ul class="post-meta">
<li><a href="category.html">Sports</a></li>
<li class="sep"></li>
<li>
<a href="category.html" class="date">01.09.2024</a>
</li>
</ul>
<h3>
<a href="single.html" class="text-hover"
>Mexico's controversial new $28.5bn tourist</a
>
</h3>
<ul class="post-card-footer">
<li>
<a href="single.html" class="read-more"
>Continue Reading</a
>
</li>
<li>
<a href="#" class="comment">
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="M250.001-410.001h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm609.998 531.537L718.461-260.001H172.309q-30.308 0-51.308-21t-21-51.308v-455.382q0-30.308 21-51.308t51.308-21h615.382q30.308 0 51.308 21t21 51.308v669.227ZM172.309-320h571.69L800-264.615v-523.076q0-4.616-3.846-8.463-3.847-3.846-8.463-3.846H172.309q-4.616 0-8.463 3.846-3.846 3.847-3.846 8.463v455.382q0 4.616 3.846 8.463 3.847 3.846 8.463 3.846ZM160-320V-800v480Z"
/></svg
><span>05</span>
</a>
</li>
</ul>
</div>
</div>
</article>
<article>
<div class="post-card horizontal-card img-hover-move">
<div class="post-thumb media">
<a href="single.html">
<img src="assets/img/post-3.jpg" alt="thumb" />
</a>
</div>
<div class="post-content">
<ul class="post-meta">
<li><a href="category.html">Lifestyle</a></li>
<li class="sep"></li>
<li>
<a href="category.html" class="date">08.02.2024</a>
</li>
</ul>
<h3>
<a href="single.html" class="text-hover"
>French migration row engulfs island</a
>
</h3>
<ul class="post-card-footer">
<li>
<a href="single.html" class="read-more"
>Continue Reading</a
>
</li>
<li>
<a href="#" class="comment"
><svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="M250.001-410.001h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm609.998 531.537L718.461-260.001H172.309q-30.308 0-51.308-21t-21-51.308v-455.382q0-30.308 21-51.308t51.308-21h615.382q30.308 0 51.308 21t21 51.308v669.227ZM172.309-320h571.69L800-264.615v-523.076q0-4.616-3.846-8.463-3.847-3.846-8.463-3.846H172.309q-4.616 0-8.463 3.846-3.846 3.847-3.846 8.463v455.382q0 4.616 3.846 8.463 3.847 3.846 8.463 3.846ZM160-320V-800v480Z"
/></svg
><span>04</span>
</a>
</li>
</ul>
</div>
</div>
</article>
<article>
<div class="post-card horizontal-card img-hover-move">
<div class="post-thumb media">
<a href="single.html">
<img src="assets/img/post-4.jpg" alt="thumb" />
</a>
</div>
<div class="post-content">
<ul class="post-meta">
<li><a href="category.html">Fashion</a></li>
<li class="sep"></li>
<li>
<a href="category.html" class="date">05.03.2024</a>
</li>
</ul>
<h3>
<a href="single.html" class="text-hover"
>SpaceX blasts private company lander</a
>
</h3>
<ul class="post-card-footer">
<li>
<a href="single.html" class="read-more"
>Continue Reading</a
>
</li>
<li>
<a href="#" class="comment">
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="M250.001-410.001h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm0-120h459.998v-59.998H250.001v59.998Zm609.998 531.537L718.461-260.001H172.309q-30.308 0-51.308-21t-21-51.308v-455.382q0-30.308 21-51.308t51.308-21h615.382q30.308 0 51.308 21t21 51.308v669.227ZM172.309-320h571.69L800-264.615v-523.076q0-4.616-3.846-8.463-3.847-3.846-8.463-3.846H172.309q-4.616 0-8.463 3.846-3.846 3.847-3.846 8.463v455.382q0 4.616 3.846 8.463 3.847 3.846 8.463 3.846ZM160-320V-800v480Z"
/></svg
><span>05</span>
</a>
</li>
</ul>
</div>
</div>
</article>
</div>
</div>
<div class="single-post-item">
<ul class="single-post-navigation">
<li>
<a href="single.html"
><svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="M366.924-213.463 100.001-480.385l266.923-266.922 41.768 41.768-194.54 195.155h646.231v59.999H214.537l195.155 195.154-42.768 41.768Z"
/></svg
>Prev Posts</a
>
</li>
<li>
<a href="single.html"
>Next Posts<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="m593.461-213.463-42.768-41.768 195.155-195.154H100.001v-59.999h646.231L551.693-705.539l41.768-41.768 266.922 266.922-266.922 266.922Z"
/></svg
></a>
</li>
</ul>
</div>
<!--/.post-navigation-->
<div class="single-post-item">
<div class="single-post-author">
<div class="author-thumb">
<a href="author.html"
><img src="assets/img/author-widget.jpg" alt="thumb"
/></a>
</div>
<div class="author-info">
<h3>
<a href="author.html">Elizabeth Nichols</a>
<span>Founder - Editor</span>
</h3>
<p>
Meet Elizabeth, the passionate mind behind our blog. With a
heart woven with words and a penchant for storytelling,
Emily is a dedicated writer who crafts narratives.
</p>
<ul class="post-social-share">
<li class="facebook">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
fill="currentColor"
>
<path
d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"
></path></svg
></a>
</li>
<li class="twitter">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
fill="currentColor"
>
<path
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"
></path></svg
></a>
</li>
<li class="instagram">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
fill="currentColor"
>
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
></path></svg
></a>
</li>
<li class="pinterest">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
fill="currentColor"
>
<path
d="M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3 .8-3.4 5-20.3 6.9-28.1 .6-2.5 .3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"
></path></svg
></a>
</li>
</ul>
</div>
</div>
</div>
<!--/.post-author-->
<div class="single-post-item">
<h3>Post Comments</h3>
<ul class="comments-box">
<li class="comment">
<div class="comment-inner">
<div class="comment-thumb">
<img src="assets/img/author-1.jpg" alt="img" />
</div>
<div class="comment-wrap">
<div class="comments-meta">
<h4>Félix Lengyel <span>01.01.2024 at 8:00</span></h4>
</div>
<div class="comment-area">
<p>
You guys have put so much work, effort, and time while
designing this awesome theme I can see that passion
when I incorporated it into my website.
</p>
<a href="#" class="reply">Reply</a>
</div>
</div>
</div>
<ul class="children">
<li class="comment">
<div class="comment-inner">
<div class="comment-thumb">
<img src="assets/img/author-2.jpg" alt="img" />
</div>
<div class="comment-wrap">
<div class="comments-meta">
<h4>
Joseph Crawford <span>01.01.2024 at 8:00</span>
</h4>
</div>
<div class="comment-area">
<p>
The only thing I LOVE more than this theme and
it’s incredible options is the support team! They
are freaking amazable!
</p>
<a href="#" class="reply">Reply</a>
</div>
</div>
</div>
</li>
</ul>
</li>
<li class="comment">
<div class="comment-inner">
<div class="comment-thumb">
<img src="assets/img/author-3.jpg" alt="img" />
</div>
<div class="comment-wrap">
<div class="comments-meta">
<h4>Patsy Hamlin <span>01.01.2024 at 8:00</span></h4>
</div>
<div class="comment-area">
<p>
Outstanding quality in this theme, brilliant Effects
and perfect crafted Code. We absolutely love it and
can highly recommend DynamicLayers!
</p>
<a href="#" class="reply">Reply</a>
</div>
</div>
</div>
</li>
</ul>
<div class="comment-form-wrap">
<h3>Leave a Reply</h3>
<form
action="#"
method="post"
class="comment-form form-horizontal"
>
<div class="comment-form-group">
<div class="form-field">
<input
type="text"
id="name"
name="name"
class="form-control"
placeholder="Name*"
required=""
/>
</div>
<div class="form-field">
<input
type="text"
id="email"
name="email"
class="form-control"
placeholder="Email*"
required=""
/>
</div>
<div class="form-field message">
<textarea
id="comment"
name="comment"
cols="30"
rows="5"
class="form-control comment"
placeholder="Your Comment*"
required=""
></textarea>
</div>
<div class="form-field submit-btn">
<button
id="submit"
class="default-btn text-anim"
type="submit"
data-text="Submit Comment"
>
Submit Comment
</button>
</div>
</div>
</form>
</div>
</div>
<!--/.post-comments-->
</div>
</div>
</div>
</section>
<!--/.single-page-->
<footer class="footer-section bg-light-red">
<div class="container">
<div class="row gy-lg-0 gy-4">
<div class="col-lg-3 col-md-6">
<div class="footer-widget widget">
<div class="about-widget">
<a href="index.html" class="logo"
><span class="site-title">Vixto</span></a
>
<p>
Author of this blog md elizabeth nichols is a travel
enthusiast, writer and street photographer.
</p>
<a
href="subscribe.html"
class="default-btn text-anim"
data-text="Subscribe"
>Subscribe</a
>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6">
<div class="footer-widget widget">
<div class="category-widget">
<h3 class="widget-title">Category</h3>
<ul>
<li><a href="category.html">Travel</a></li>
<li><a href="category.html">Photos</a></li>