-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthor.html
More file actions
984 lines (968 loc) · 42 KB
/
author.html
File metadata and controls
984 lines (968 loc) · 42 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
<!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#07716e7f736847627f666a776b622964686a"
><span
class="__cf_email__"
data-cfemail="ceb8a7b6baa18eabb6afa3bea2abe0ada1a3"
>[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="page-header author-page">
<div class="container">
<div class="page-content-wrap">
<div class="page-content mx-auto text-center">
<h4>Founder and editor</h4>
<h2 class="justify-content-center">Elizabeth Nichols</h2>
<p>
Embark on a journey through the vibrant world of sustainable
fashion, where innovation meets ethics and style.
</p>
</div>
<div class="author-thumb">
<img src="assets/img/author-widget.jpg" alt="img" />
</div>
</div>
</div>
</section>
<!--/.page-header-->
<div class="padding-top">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<div class="author-page-info text-center">
<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.
</p>
<ul class="social-list justify-content-center">
<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
>Facebook</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
>Twitter</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
>Instagram</a
>
</li>
<li class="tiktok">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
fill="currentColor"
>
<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"
></path></svg
>Tiktok</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--/.author-page-info-->
<section class="archive-page padding">
<div class="container">
<div class="row gy-4">
<article class="col-lg-4 col-md-6 position-relative">
<div class="post-card image-post img-hover-move">
<div class="post-thumb media">
<a href="single.html">
<img src="assets/img/post-7.jpg" alt="thumb" />
</a>
<div class="image-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">04.02.2024</a></li>
</ul>
<h3>
<a href="single.html" class="text-hover"
>Haller gives Ivory Coast victory in Afcon final</a
>
</h3>
<a href="single.html" class="read-more">Continue Reading</a>
</div>
</div>
</div>
</article>
<article class="col-lg-4 col-md-6">
<div class="post-card format-video img-hover-move">
<div class="post-thumb media">
<a href="single.html">
<video
autoplay="autoplay"
loop="loop"
muted="muted"
playsinline=""
>
<source src="assets/video/travel.mp4" />
</video>
</a>
<a
class="video-popup venobox"
data-vbtype="video"
href="https://www.youtube.com/watch?v=ZLaG1migE00"
>
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="M181.925-180.001q-30.308 0-51.308-21-20.999-21-20.999-51.308v-455.382q0-30.308 20.999-51.308 21-21 51.308-21h455.382q30.308 0 51.308 21t21 51.308v183.077l140.767-140.768v370.764L709.615-435.386v183.077q0 30.308-21 51.308t-51.308 21H181.925Zm0-59.999h455.382q5.386 0 8.847-3.462 3.462-3.462 3.462-8.847v-455.382q0-5.385-3.462-8.847-3.461-3.462-8.847-3.462H181.925q-5.385 0-8.847 3.462-3.462 3.462-3.462 8.847v455.382q0 5.385 3.462 8.847Q176.54-240 181.925-240Zm-12.309 0v-480 480Z"
/>
</svg>
</a>
</div>
<div class="post-content">
<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>
<h3>
<a href="single.html" class="text-hover"
>Enjoy the best afternoon at Canggu, Bali, Indonesia.</a
>
</h3>
<p>
Explore the world journey through captivating stories
insightful and inspiring your experience.
</p>
<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>02</span></a
>
</li>
</ul>
</div>
</div>
</article>
<article class="col-lg-4 col-md-6">
<div class="post-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 sports are king</a
>
</h3>
<p>
Explore the world journey through captivating stories
insightful and inspiring your experience.
</p>
<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 class="col-lg-4 col-md-6">
<div class="post-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 train</a
>
</h3>
<p>
Explore the world journey through captivating stories
insightful and inspiring your experience.
</p>
<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 class="col-lg-4 col-md-6">
<div class="post-card img-hover-move">
<div class="post-slider-wrap">
<div class="swiper gallary-post-slider carousel-pagination">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="assets/img/post-3.jpg" alt="img" />
</div>
<div class="swiper-slide">
<img src="assets/img/post-4.jpg" alt="img" />
</div>
<div class="swiper-slide">
<img src="assets/img/post-8.jpg" alt="img" />
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</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 in Indian Ocean</a
>
</h3>
<p>
Explore the world journey through captivating stories
insightful and inspiring your experience.
</p>
<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 class="col-lg-4 col-md-6">
<div class="post-card format-audio img-hover-move">
<div class="post-thumb media">
<a href="single.html">
<img src="assets/img/post-5.jpg" alt="thumb" />
</a>
<div class="audio-player">
<audio controls>
<source src="assets/audio/music.mp3" />
</audio>
</div>
</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 lunar lander into orbit</a
>
</h3>
<p>
Explore the world journey through captivating stories
insightful and inspiring your experience.
</p>
<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>
<ul class="pagination-wrap justify-content-center">
<li><a href="#" class="active">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li>
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="m553.846-253.847-42.153-43.384 152.77-152.77H180.001v-59.998h484.462l-152.77-152.77 42.153-43.384L779.999-480 553.846-253.847Z"
></path></svg
></a>
</li>
</ul>
<!--/.pagination-wrap-->
</div>
</section>
<!--/.archive-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>
<li><a href="category.html">Lifestyle</a></li>
<li><a href="category.html">Fashion</a></li>
<li><a href="category.html">Studies</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="footer-widget widget">
<div class="widget-post-items">
<h3 class="widget-title">Editors Pick</h3>
<div class="widget-post-item img-hover-move">
<div class="widget-post-thumb media">
<a href="single.html"
><img src="assets/img/post-1.jpg" alt="thumb"
/></a>
</div>
<div class="widget-post-content">
<h3>
<a href="single.html" class="text-hover"
>Enjoy the best afternoon at Canggu, Indonesia</a
>
</h3>
<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>
</div>
</div>
<div class="widget-post-item img-hover-move">
<div class="widget-post-thumb media">
<a href="single.html"
><img src="assets/img/post-2.jpg" alt="thumb"
/></a>
</div>
<div class="widget-post-content">
<h3>
<a href="single.html" class="text-hover"
>In this Austrian town, extreme sports king</a
>
</h3>
<ul class="post-meta">
<li><a href="category.html">Fashion</a></li>
<li class="sep"></li>
<li>
<a href="category.html" class="date">04.07.2024</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-widget widget">
<div class="contact-widget">
<h3 class="widget-title">Contact Info</h3>
<ul class="contact-info">
<li>
<span>Address:</span>3770 Hidden meadow drive venturia, ND
58489
</li>
<li>
<span>Phone:</span
><a href="tel:7045550127">(704) 555-0127</a>
</li>
<li>
<span>Mail Us:</span
><a href="#"
><span
class="__cf_email__"
data-cfemail="c3b5aabbb7ac83a6bba2aeb3afa6eda0acae"
>[email protected]</span
></a
>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="copyright-area">
<div class="copyright-text">
© <span id="currentYear"></span> Vixto, All Rights Reserved. Design
By
<a
href="https://themeforest.net/user/dynamiclayers/portfolio"
target="_blank"
>DynamicLayers</a
>
</div>
<ul class="footer-social">
<li>Follow:</li>
<li>
<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"
/></svg
></a>
</li>
<li>
<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>
<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"
></path></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"
></path></svg
></a>
</li>
</ul>
</div>
<!--/.copyright-area-->
</div>
</footer>
<!--/.footer-section-->
<div id="scrollup">
<button id="scroll-top" class="scroll-to-top">
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 -960 960 960"
width="24"
fill="currentColor"
>
<path
d="M450.001-180.001v-485.077L222.154-437.232 180.001-480 480-779.999 779.999-480l-42.153 42.768-227.847-227.846v485.077h-59.998Z"
/>
</svg>
</button>
</div>
<!--scrollup-->
<button
class="theme-toggle"
id="theme-toggle"
title="Toggles light & dark"
aria-label="auto"
aria-live="polite"
>
<svg
class="sun-and-moon"
aria-hidden="true"
width="24"
height="24"
viewBox="0 0 24 24"
>
<mask class="moon" id="moon-mask">
<rect x="0" y="0" width="100%" height="100%" fill="white" />
<circle cx="24" cy="10" r="6" fill="black" />
</mask>
<circle
class="sun"
cx="12"
cy="12"
r="6"
mask="url(#moon-mask)"
fill="currentColor"
/>
<g class="sun-beams" stroke="currentColor">
<line x1="12" y1="1" x2="12" y2="3" />
<line x1="12" y1="21" x2="12" y2="23" />
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64" />
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78" />
<line x1="1" y1="12" x2="3" y2="12" />
<line x1="21" y1="12" x2="23" y2="12" />
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36" />
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22" />
</g>
</svg></button
><!-- Switch Button -->
<!--jQuery Lib-->
<script
data-cfasync="false"
src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"
></script>
<script src="assets/js/vendor/jquary-3.6.0.min.js"></script>
<script src="assets/js/vendor/bootstrap.min.js"></script>
<script src="assets/js/vendor/popper.min.js"></script>
<script src="assets/js/vendor/venobox.min.js"></script>
<script src="assets/js/vendor/swiper.min.js"></script>
<script src="assets/js/vendor/smooth-scroll.js"></script>
<script src="assets/js/mailchimp.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>