-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2501 lines (1750 loc) · 177 KB
/
index.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
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>
<html lang="en">
<head>
<meta name="generator" content="Hugo 0.54.0" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> 100 days of travel</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header class="masthead">
<h1 class="masthead-title">
<a href=""> 100 days of travel</a>
</h1>
<nav class="masthead-nav">
<p>An archive of <b>100days.travel</b> blog created in 2021-2022 during a 4 month trip to South America</p>
</nav>
</header>
<div class="content list h-feed">
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 120 - Aftermath</strong></p>
<p>What an amazing trip that was!</p>
<p><img src="uploads/2022/8652606408.jpg" width="600" height="337" loading="lazy" alt="" /></p>
<p>To finish the trip properly we collected some interesting statistics and facts:</p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Occurrences</th>
</tr>
</thead>
<tbody>
<tr>
<td>Days</td>
<td>119</td>
</tr>
<tr>
<td>Countries</td>
<td>4 - Brazil, Peru, Colombia, Netherlands</td>
</tr>
<tr>
<td>Countries 1 day trips</td>
<td>2 - Argentina, Paraguay</td>
</tr>
<tr>
<td>Flights</td>
<td>17 - Vilnius - Amsterdam, Amsterdam - Madrid, Madrid - São Paulo, São Paulo - Rio de Janeiro, São
Paulo - Santiago, Santiago - Lima, Cusco - Lima, Lima - Talara, Lima - Pucallpa, Pucallpa - Lima, Lima
- Bogota, Bogota - Pereira, Medellin - Santa Marta, Cartagena - Bogota, Bogota - Newark, Newark -
Amsterdam, Amsterdam - Vilnius</td>
</tr>
<tr>
<td>Airports</td>
<td>16 - Vilnius, Amsterdam, Madrid, São Paulo, Rio de Janeiro, Santiago, Lima, Cusco, Talara, Pucallpa,
Bogota, Pereira, Medellin, Santa Marta, Cartagena, Newark</td>
</tr>
<tr>
<td>Hotels</td>
<td>18 - 2 x Rio de Janeiro, 1 x Foz do Iguaçu, Campo Grande, Pantanal, São Paulo, Paracas, Arequipa,
Cusco, Mancora, Chiclayo, Bogota, Salento, Medellin, Santa Marta, 2 x Palomino, Bogota</td>
</tr>
<tr>
<td>Hostels</td>
<td>15 - Bonito, 2 x Lima, Huacachina, Ica, Cabanaconde, Llahuar, Sangale, Arequipa, Cusco, Pacasmayo, 2
x Lima, Minca, Cartagena</td>
</tr>
<tr>
<td>Airbnb</td>
<td>4 - São Paulo, Mancora, Bogota, Cartagena</td>
</tr>
<tr>
<td>Tent / Bungalow</td>
<td>2 - Inca Trail, Ceilan</td>
</tr>
<tr>
<td>Long bus rides</td>
<td>24 - São Paulo - Iguaçu, Iguaçu - Cascavel, Cascavel - Bonito, Bonito - Campo Grande, Campo Grande -
São Paulo, Lima - Paracas, Paracas - Ica, Ica - Arequipa, Arequipa - Cabanaconde, Cabanaconde - Chivay
- Arequipa, Arequipa - Cusco, Cusco - Rainbow Mountain - Cusco, Cusco - Chincheros - Cusco, Mancora -
Chiclayo, Chiclayo - Pacasmayo, Pacasmayo - Lima, Pereira - Salento, Salento - Medellin, Medellin -
Guatapé, Santa Marta - Minca, Minca - Santa Marta, Santa Marta - Palomino, Palomino - Santa Marta,
Santa Marta - Cartagena</td>
</tr>
<tr>
<td>Taxi rides</td>
<td>50+</td>
</tr>
<tr>
<td>Tuk-tuk rides</td>
<td>20+</td>
</tr>
<tr>
<td>Moto bike rides</td>
<td>6</td>
</tr>
<tr>
<td>Train rides</td>
<td>2 - Iguazu Argentina, Corcovado</td>
</tr>
<tr>
<td>Jeep rides</td>
<td>6 - Iguaçu, Huacachina, 4 x Salento</td>
</tr>
<tr>
<td>Boat rides</td>
<td>7 - Iguaçu, Pantanal, Paracas, 2 x Pucallpa, 2 x Cartagena</td>
</tr>
<tr>
<td>Bike rides</td>
<td>1 - Paracas</td>
</tr>
<tr>
<td>Horse rides</td>
<td>1 - Pantanal</td>
</tr>
<tr>
<td>Metro rides</td>
<td>25 - São Paulo, Medellin</td>
</tr>
<tr>
<td>Cable cars</td>
<td>3 - Rio De Janeiro, Bogota, Medellin</td>
</tr>
<tr>
<td>Rented cars</td>
<td>1 - Campo Grande</td>
</tr>
<tr>
<td>Sandboarding</td>
<td>1 - Huachacina</td>
</tr>
<tr>
<td>Surfing</td>
<td>2 - Mancora</td>
</tr>
<tr>
<td>Hikes</td>
<td>11 - Pão de Açúcar, Iguazu Argentina, Pantanal, Arequipa Chachani, Colca Canyon, Rainbow Mountain,
Inca Trail, Cocora Valley, Guatapé, 2 x Minca</td>
</tr>
<tr>
<td>Beaches</td>
<td>11 - Copacabana, Ipanema, Miraflores, Paracas, Red Beach, Mancora, Pacasmayo, Santa Marta, Palomino,
Isla Grande Playa Libre, Cartagena</td>
</tr>
<tr>
<td>Summits</td>
<td>3 - Cruz Del Condor (3700m), Dead Woman’s Pass (4200m), Rainbow Mountain (5200m)</td>
</tr>
<tr>
<td>Waterfalls</td>
<td>2 - Iguazu, Minca</td>
</tr>
<tr>
<td>Free city tours</td>
<td>3 - Lima, 2 x Medellin</td>
</tr>
<tr>
<td>Farm tours</td>
<td>2 - Salento Coffee Tour, Minca Cacao Tour</td>
</tr>
<tr>
<td>Markets</td>
<td>5 - São Paulo, 2 x Lima, Arequipa, Cusco</td>
</tr>
<tr>
<td>F1 tracks</td>
<td>2 - Zandvoort, Interlagos</td>
</tr>
<tr>
<td>Haircuts</td>
<td>3 - Cusco, Lima, Cartagena</td>
</tr>
<tr>
<td>Covid tests taken</td>
<td>7 - Vilnius, Lima, Bogota</td>
</tr>
<tr>
<td>Positive Covid tests</td>
<td>1 - Bogota</td>
</tr>
<tr>
<td>Broken things</td>
<td>3 - iPhone 11, AirPods Pro, sunglasses</td>
</tr>
<tr>
<td>Lost things</td>
<td>4 - AirPods 2, Redmi Airdots, flashlight, winter hat</td>
</tr>
</tbody>
</table>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-20 19:44:35 +0200">Feb 20, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 119</strong></p>
<p>Due to the time zone shift, we had no night. We sat on the plane at the start of the evening and after 7
hours it was the morning in Amsterdam. After 4 months of feeling tall, we got our reality check in the
airport as we needed to look up at all the Dutch people passing by 😀.</p>
<p>At the gate, we finally heard Lithuanian voices and after a short flight, we were back in Vilnius.</p>
<p><img src="uploads/2022/08399eabb3.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-18 00:03:51 +0200">Feb 18, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 118</strong></p>
<p>We had a nice morning walk to the airport. The surrounding neighborhoods were cozy and safe with many
people on bicycles going to their work or studies 🚲.</p>
<p>We had two long flights throughout the day and night first to Newark and then to Amsterdam. The flights
weren’t too calm with more than a few turbulences along the way. It was also the first time I was able
to watch a live Champions League football match during the flight ⚽️ which felt great.</p>
<p><img src="uploads/2022/1c0c140976.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/873bc602cf.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/0297f0965a.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-18 00:00:22 +0200">Feb 18, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 117</strong></p>
<p>In the morning we had our Covid tests and went to have a dip in the Caribbean sea for the last time 🐳.
Afterward, we packed our bags and flew back to Bogota so we would be ready for tomorrow morning’s
flight back home. Bogota was cloudy and cold so we calmly spend the last hours of our trip throwing out
worn-out clothes and filling out all the Covid related travel forms 📖.</p>
<p><img src="uploads/2022/ca38aecc77.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/a4e08f2471.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/85af6f372a.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-17 23:56:08 +0200">Feb 17, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 116</strong></p>
<p>For the last day in Cartagena, we enjoyed our terrace with a jacuzzi and in the afternoon went to a
Colombian cooking class 👩🍳. We learned how to make traditional coca rice, patacones from green bananas
and combine them to make delicious seafood meals 😋. The chef also surprised us with his knowledge of
Lithuania and medieval Lithuanian history.</p>
<p><img src="uploads/2022/96dfd204a7.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/898b2196cb.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/1df55f1c83.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-14 19:56:38 +0200">Feb 14, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 115</strong></p>
<p>We were in a touristic mood but the hot weather didn’t allow us to walk too much around the city so we
decided to take a red touristic bus around the city which we haven’t done yet on this trip 🚌. In the
afternoon we moved into AirBnb that unexpectedly had clear views of the airport and we could see planes
going up and landing while being in the terrace ✈️.</p>
<p><img src="uploads/2022/af76687064.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/d9a666dd09.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/f7a93a16cd.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/bb1bf68af3.jpg" width="600" height="337"
alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-14 19:50:58 +0200">Feb 14, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 114</strong></p>
<p>Today was just a calm day in Cartagena spending time in a hostel and walking around the neighborhood.</p>
<p><img src="uploads/2022/e0e561e05f.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-14 19:44:07 +0200">Feb 14, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 113</strong></p>
<p>Colombia has plenty of Caribbean islands and we wanted to visit at least one of them 🏝. We chose one of
the most easily reachable but for this reason probably most popular <em>Isla Grande</em>. In the morning we
went to a port from which speedboats depart. It had a chaotic atmosphere so it took us asking around a lot
until we finally sat on our boat. After about an hour of the ride, the water started changing the color to a
light blue and we reached the islands. <em>Isla Grande</em> itself has no main ports so we just needed to
ask our boat to let us go to one of the beaches and agreed on the time they’re going to pick us up.</p>
<p>Despite the popularity, it wasn’t crowded and we could enjoy a light sand beach and warm waters. The sea
was so warm and calm that we just floated inside it for most of the time 🌊 ☀️.</p>
<p><img src="uploads/2022/1e520070e3.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/e23630ecaa.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/b2e579ea71.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/cb33032efc.jpg" width="600" height="337"
alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-11 17:34:46 +0200">Feb 11, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 112</strong></p>
<p>We went out to take a look at the city center of Cartagena. Today was a cloudy day but it was still hot and
humid so walking in the streets was still a bit uncomfortable. Cartagena proved to be a pretty coastal city.
The sea, bays, boats, and skyscrapers mix with old colonial architecture and colorful graffiti. Due to this
reason, it was touristic and had plenty of people chasing us on the streets offering their services. We also
saw plenty of Lithuanian flags because the colors are identical to Cartagena flag colors 🇱🇹.</p>
<p><img src="uploads/2022/0d3ee5a1f7.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/ac1b619450.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/1e36d2ae20.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/ed82cd429d.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/f8173f24b9.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/8f67812b23.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-11 17:13:12 +0200">Feb 11, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 111</strong></p>
<p>We packed our bags to go to the city of Cartagena. We haven’t checked how to get there but by this point in
the travel, we knew that we were going to get there somehow. We went to the main road in Palomino and caught
a bus that goes back to Santa Marta. Before even reaching Santa Marta we saw a transportation company
through our window that go Cartagena. We ran through a couple of roads and roundabouts and took a van that
in the evening finally “delivered” us to our destination.</p>
<p>Usually here in South America finding transportation is super organic and locals don’t miss a chance to
earn some money. Either someone is shouting your destination in the street or just catch you at the bus
station and take you to the bus. When you’re a tourist they just find you and take you where you need to go.
</p>
<p><img src="uploads/2022/9d75c36638.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-09 17:18:48 +0200">Feb 9, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 110</strong></p>
<p>We had a relaxing day sunbathing, swimming in a pool, and planning our last week of travel.</p>
<p><img src="uploads/2022/17e06b186a.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/a25bdff6fb.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-09 17:02:23 +0200">Feb 9, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 109</strong></p>
<p>In the morning we had a moto ride and a 20min walk up the hill to participate in a popular activity here in
Palomino known as <em>tubing</em>. Basically, you sit on your swim tube (doughnut), open a beer, and float
down the river for 1.5h until you reach the sea 🏞. It was very relaxing and unexpectedly enjoyable so the
time just flew by. We enjoyed the sea and its tall waves for the remaining of the day 🌊.</p>
<p><img src="uploads/2022/45642bff77.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/b9f36f18bf.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/6eeb8ddec4.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/27c7c28ae3.jpg" width="600" height="337"
alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-09 16:54:59 +0200">Feb 9, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 108</strong></p>
<p>Today we enjoyed the beaches of Palomino. This area is not famous for its beaches and attracts people more
for the general atmosphere. The beaches were narrow but had a nice shade created by the trees which made
them very cozy. In the evening strong tropical rain has started which eventually cut the electricity in the
town for the remaining of the day ⛈. The locals told that it <em>always</em> happens when the stronger rain
starts and strong rain is no stranger in this tropical climate 🤷♂️.</p>
<p><img src="uploads/2022/736a6f37f9.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/ee3d96e846.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-09 16:42:37 +0200">Feb 9, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 107</strong></p>
<p>In the morning we repeated our 30min moto rides this time downhill to the town of Minca. When 90% of the
ride is going through nonstop bumps it again felt more like a separate activity rather than the only
transportation available.</p>
<p>Before going back to the coast we wanted to go to a cacao farm. Locals pointed out that this is 1h walk so
it sounded like a nice idea. Little did we know that we will be again going steep uphill with the heat
making us sweat like there’s no tomorrow 😓.</p>
<p>The tour of the farm was highly educational. Same as with coffee we went through the whole process of
producing cacao and chocolate. As the farm is organic we learned the lengths they need to go through to
preserve the plant. They grow bananas, avocados, maracuyas, and other exotic fruits just so the birds and
squirrels would eat something else instead of cacao 🐿.</p>
<p>In the afternoon we had 2 hot bus rides to reach a coastal Palomino town where we plan to enjoy the sea and
the sun ☀️.</p>
<p><img src="uploads/2022/e8ff569d36.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/2872271656.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/7ec9492811.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/7bce11b928.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/1d00e6a966.jpg" width="600" height="337" loading="lazy" alt="" /> <img
src="uploads/2022/505694f837.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/e19140e179.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/e0af9a3ef8.jpg" width="600" height="337"
alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-05 17:45:57 +0200">Feb 5, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 106</strong></p>
<p>Minca area which we arrived to is famous for its waterfalls, hikes and many coffee and cacao farms. After
having breakfast we started a hike around the area which we soon found out to be too ambitious. In the
middle of the hike, we had a relaxing waterfall experience under the freezing water. When we went down to a
town to have lunch we met the first Lithuanian during our trip. She was traveling with her Colombian
boyfriend so it has shown how hard is to encounter more conventional Lithuanian tourists.</p>
<p>In the end, we limited our plans so we could finish the hike before the sunset. We were happy to witness
monkeys playing on the trees while on our way back 🐒.</p>
<p><img src="uploads/2022/87d40b67c5.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-05 17:37:42 +0200">Feb 5, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 105</strong></p>
<p>For the next 2 days, we’re moving a bit away from the sea deeper into jungle valleys of the north coast. We
took a hot <em>collectivo</em> van ride to the town of Minca where we switched it to a moto-taxi to go to
our hostel. The moto ride was up the hill totally offroad with us barely managing to hold throughout the
whole ride 🏍.</p>
<p>We reached our hostel and our cabin which had one of the best views of our whole trip. We had our own net
facing jungle hills and the Caribbean sea further on the horizon. Until the end of the day, we enjoyed the
surroundings and the hot pool 🌅.</p>
<p><img src="uploads/2022/2bbaa4a2f2.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/fdfdf66b5e.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/2c3419f607.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/cdd2540a77.jpg" width="600" height="337"
alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-05 17:29:04 +0200">Feb 5, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 104</strong></p>
<p>We took a flight to Santa Marta, the city on the Caribbean coast of Colombia. The airport was right on the
sea so the views when landing were incredible. Next to the airport, there were yellow taxis and all the
drivers with yellow Colombian football t-shirts. It’s not a coincidence as numerous people in the streets
were also wearing football t-shirts and waiting for an evening match against Argentina. We joined the locals
in watching the match which they unfortunately lost ⚽️.</p>
<p><img src="uploads/2022/93130d2565.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/24566eb4f9.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/52f87425a7.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-05 17:20:52 +0200">Feb 5, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 103</strong></p>
<p>Early in the morning, we went to the town of Guatapé. Next to it is the rock <em>La Piedra del peño</em>
that the locals claim has <em>the best view in the world</em> so we decided to climb it and check it
ourselves. The climb was steep but not too hard. At the top, the view <em>was</em> beautiful with many lakes
and hills in our sight. Later we walked the colorful streets of Guatapé which had numerous ornaments painted
on the walls of the buildings.</p>
<p><img src="uploads/2022/e1026f3c71.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/60c16b5258.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/6bf12a094d.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/e42b26f166.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/1933496e39.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/22494834b6.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/e6a3f177a9.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-02-05 17:17:11 +0200">Feb 5, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 102</strong></p>
<p>Today we continued educating ourselves about the city this time going on the tour in the city center. The
city is unique in a way that for ages it was ignored first by the Spanish conquers and later didn’t play any
part in the liberation and independence movement thus they feel more like their own region and not as much
Colombian. For this reason, the city center practically doesn’t have any colonial-style architecture but has
plenty of unattractive (subjective) soviet style grey “modern” buildings.</p>
<p>The guide tried hard to explain the history of Medellin and the recent political developments of Colombia.
He also went through horrific left wing-right wing-drug cartel-government wars that made him witness murders
and dead bodies while he was still a small child. He showed places of bombings and shootings which are often
forgotten (because of their frequency) or not spoken deliberately by Colombian people. This kind of
“collective memory loss”, as he explained, is probably a necessity as it allows Colombians to be easy-going
and relaxed in day-to-day life rather than being traumatized and sucked-in recent past. Also, it allowed the
government to make controversial and even generous deals with the extreme right and left wing to stop the
wars in the streets.</p>
<p>The transformation of the city center from a crime zone to a hope zone (as the guide described) was also a
very deliberate city government move. They created lots of social programs to help people and combined them
with inclusive infrastructure. They deliberately went to the most crime-prone areas and built parks,
libraries as well as moved government agencies there. As the guide was the witness of these changes he told
that as a young guy he finally had places to play and spend time rather than being in the streets surrounded
by drugs.</p>
<p>This guide also refused to say the name of their most famous criminal, calling him <em>you know who</em> or
<em>Voldemort</em>. He explained that for the locals it brings huge anger that some people especially
younger and who don’t live here wear t-shirts with his face and almost worship him. For him and his
relatives, it represents a traumatic bloody past. It also is a downside of their <em>collective memory
loss</em> as refusal to speak about those times or educate about it creates these gaps of knowledge.
</p>
<p>In these times, most areas of the city are completely safe. The city itself is incredibly green, beautiful,
and modern. The locals are proud of their infrastructure, especially the metro which was built during the
hardest decades and represents their resilience. What an incredible transformation!</p>
<p><img src="uploads/2022/ebe600b86d.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/ec9a0cc39a.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/a60e8ca2b5.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/9de441f88d.jpg" width="600" height="337"
alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-01-31 01:50:35 +0200">Jan 31, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 101</strong></p>
<p>Medellin is a city that transformed greatly from its recent tragic past and we were eager to learn more
about it during our visit here.</p>
<p>In the afternoon we went on a tour to <em>Comuna 13</em>, a neighborhood that just over twenty years ago
was one of the most dangerous places on earth now turned into this unique artsy district trying to reinvent
itself while healing the wounds of the past.</p>
<p>We had a young guide who witnessed the latter stages of these horrors and lived through the great
transformation. He presented the story of this district which for 50-60 years was completely neglected by
the government and became a place of fighting for left-wing guerrillas, right-wing paramilitary groups, and
later drug lords with poor people just being used as pawns. The guide refused to even say the name of this
most famous drug lord, show any of the graffitis with him as the community feels a great hatred towards him.
</p>
<p>The guide shared his own experience of his life in the early 2000s. The daily shootings and killings were
the norm. They were ducking under the tables while in school while shootings were happening and he witnessed
their teacher getting shot during the class. He had a friend who was made to kill a person while still being
8 years old. Hearing such stories from the person who witnessed it was haunting.</p>
<p>The life of the community became even more tragic in the late 90s and early 2000s when the government
decided to use military force to bring order to the district. In 2002 they witnessed 3 days of constant
bombardment, military treating anyone in the district as a potential enemy, and killing innocent people and
children along the way. There are numerous murals in the district dedicated to this event.</p>
<p>At some point came the realization that it’s impossible to make improvements just by using force. The city
government decided to invest in the infrastructure creating unique supermarket-style escalators connecting
different parts of the district, building cable-car and metro lines. Also, social programs were investing in
culture, arts, and sports that gave young people alternative and hope. Unique escalators and artsy streets
became a hit in Colombia and later in the whole world bringing the first tourists to the district. With the
new flow of money, people started opening shops, cafes and worked hard to push any crime away from this
area. It was an incredible transformation that is still ongoing. Only 2 years ago government officially
declared this place as <em>touristic</em> bringing even more awareness, security, and money. Local people
love tourists here as this industry gave people hope and opportunity for the first time. Now, incredibly,
this is one of the safest places in the city.</p>
<p>In the evening we tried cable-car as a mode of transportation and it has to be the craziest and the most
efficient thing at the same time. We took a 20-minute loop that went from the 13th district to even more
outer layers of the city. The cable cars went super fast up and down sometimes being very close to the roof
of the buildings, sometimes going a hundred meters above the ground over the hills which made us realize
that the city is much bigger than we first perceived.</p>
<p><img src="uploads/2022/0498f43a40.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/efe631d2ac.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/98f3784284.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/40b072f299.jpg" width="600" height="337"
alt="" /> <img src="uploads/2022/7149916828.jpg" width="600" height="337" loading="lazy" alt="" width="600" height="337"
alt="" /> <img src="uploads/2022/c0b0c8b731.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/50bf6a545e.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/60aa6675f0.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-01-31 00:55:15 +0200">Jan 31, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 100</strong></p>
<p>It’s the 100th day! It has also proven to be a classic South American bus travel experience with mountain
roads and traffic jams which has caused us to arrive at Medellin only after sunset. Fortunately, we were
able to immediately witness the good vibes of the city when we saw a crowd dancing salsa in the middle of
the bus station. We had some problems with our canceled hostel reservation but eventually, we managed to
find a place to sleep and settled in our hotel.</p>
<p>We went out to celebrate our 100th day and what a great city it was to do that! The streets were buzzing
with people, music, bars and they had an interesting mix with nature as trees were bursting from every
corner.</p>
<p>Cheers to the great 100 days of travel! 🥂</p>
<p><img src="uploads/2022/caedd361eb.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/d9d52c7f94.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/35ebe98a76.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-01-31 00:39:14 +0200">Jan 31, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 99</strong></p>
<p>We started the day early to go for a hike to the <em>Cocora Valley</em>. To go there you need to take one
of the colorful jeeps that are going back and forth from the central square. The valley itself was
breathtaking with the views we never witnessed before. Green jungle-like hills were surrounded by extremely
tall and lean palm trees in the valley. We enjoyed a 2-hour hike before coming back to the jeeps. The
journey back was adventurous. When someone doesn’t fit to sit in the jeep it’s not a problem - locals simply
offer you to stand at the back of the car. In our case it was 4 of us made to stand and we barely fit. The
car was going fast through the hills and it was our job to hold tight and constantly dodge tree branches
along the way 😅.</p>
<p>After lunch, we went to <em>Finca El Ocaso</em> for a coffee tour. Since this is a coffee region there are
many local farms called <em>fincas</em> that produce and sell coffee. We went through the whole process
ourselves from growing to roasting during the tour. We learned a lot and understood why Colombia is one of
the biggest arabica producers in the world. We finished the tour in the <em>lab</em> by smelling and tasting
coffees of different types and qualities ☕️.</p>
<p><img src="uploads/2022/8a9311fc4d.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/bd7fd0d15f.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/f4ae1ee1b4.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/47c6165f5c.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/41339b9fc3.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/e894f2e4d6.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/a6ba8e1610.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/dd7d036df3.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/35d3bd4f26.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/8a1b2e9d2c.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/18f72e0324.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/d20cf9347b.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/094c59277e.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/9027904c64.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/a6d7694307.jpg"
width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-01-28 05:25:18 +0200">Jan 28, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 98</strong></p>
<p>At 2 AM we were woken up by the sound of someone entering our apartment 😱. Gabriele reflectively shouted
“who is that?” and for me, everything went too fast as the doors of the apartment closed before I could
react at all. Needless to say, we were frightened and stunned by what just happened. I went out to the
corridor and there was a young woman there. She explained that she’s a housekeeper and according to her
schedule our apartment should’ve been empty. That still wasn’t enough of an explanation of why would you
come to an apartment in the middle of the night?! We contacted the Airbnb host. At first, the housekeeper
explained to him that she was told that <em>there is an emergency</em> which also didn’t make sense because
how do you know about the emergency in the room that according to you supposed to be empty. Later, it turned
out she was just planning to sleep in the apartment that she thought is empty. For the remaining of the
night, it was hard to fall asleep as in our minds someone else was about to burst into our apartment any
moment.</p>
<p>In the morning we went straight to the airport. We were happy to discover cheap internal flights in
Colombia so we exchanged a 7-hour bus ride for a 30 minutes flight to the city of Pereira. There we jumped
on the bus and after an hour arrived at the super cute Salento town. We climbed the hill to overlook the
landscape and got served coffee with brandy by the local vendors.</p>
<p><img src="uploads/2022/6b729a74ae.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/0453419ae0.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/c04c3c6f19.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/05c56d941e.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/8d0ec2612f.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/218098c29f.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/9920d65e5e.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/5d88906876.jpg" width="600" height="337"
alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-01-28 05:00:40 +0200">Jan 28, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 97</strong></p>
<p>After 10 days we were finally recovered from Covid. We went up the <em>Monserrate</em> hill to look at the
panorama of Bogota. The rain and fog distorted the view a little bit but it was a good feeling being
tourists again.</p>
<p>In the last few days, we moved from the hotel to Airbnb so we could have a kitchen and cook food for
ourselves. It was also the kind of building we encountered not for the first time in South America: with
gym, co-working spaces, terraces, laundry, and other convenient services. I used the chance to bike a little
bit as the body was mostly laying down in the bed for the last 10 days.</p>
<p><img src="uploads/2022/a9f3267a8b.jpg" width="600" height="337" loading="lazy" alt="" /><img
src="uploads/2022/57a499318b.jpg" width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/87d20bd473.jpg"
width="600" height="337" loading="lazy" alt="" /><img src="uploads/2022/d3cd4edf34.jpg" width="600" height="337"
alt="" /><img src="uploads/2022/1f4aae3c53.jpg" width="600" height="337" loading="lazy" alt="" /></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published"
datetime="2022-01-26 02:12:01 +0200">Jan 26, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 96</strong></p>
<p>We went out for an hour to look around the historical part of the city. One of the main <em>7th street</em> was crowded and full of people. It had a feeling of a cheap resort as there were street musicians, performers, and sellers but nothing looked of good quality. We didn’t feel comfortable walking around so many people so we just peeked and left.</p>
<p>Afterward, we walked through the main <em>Bolivar</em> square which was full of pigeons (also recognized some buildings from the certain Netflix series) towards the <em>La Candelaria</em> district which had beautiful street art and cozy streets which we enjoyed much more.</p>
<p><img src="uploads/2022/e211337021.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/c43613ce14.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/de20af57e5.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/2a85ca2e41.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/bb2b64c26d.jpg" width="600" height="337" loading="lazy" alt=""></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published" datetime="2022-01-26 01:58:20 +0200">Jan 26, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 95</strong></p>
<p>This disease has proven to be a no joke, after the fever and other symptoms have ended the energy of our bodies still felt completely drained. We felt that this was the time to start recovering so we allowed ourselves to walk around the botanical gardens and local parks. They were lively and comfortable. In the <em>Parque 93</em> close to where we live there were tables and chairs with people having take-out lunch and we happily joined in ☀️.</p>
<p><img src="uploads/2022/51c6e0538e.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/1704d2bc4a.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/6c78eba638.jpg" width="600" height="337" loading="lazy" alt=""></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published" datetime="2022-01-26 01:43:22 +0200">Jan 26, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 88-94</strong></p>
<p>At night I had a bit of a fever and in the morning we both felt sick. It was quite difficult to get a spot to do a Covid test but eventually, we reserved a time and the PCR test came out positive. So at around day 90 the reality of today’s world caught up with us. We were lucky that after jungle we allowed ourselves to take some nights in a good hotel which has become a blessing as we spent all of our time in the room.</p>
<p>Local delivery services also have proven to be great and Gabriele even ordered a puzzle which was a good challenge to take throughout all these days.</p>
<p>This is how most of the week went: movies, YouTube, books, sleeping, and occasional looks through the window to the ever-changing weather of Bogota.</p>
<p><img src="uploads/2022/65ff5e6791.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/b98ae5ee43.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/7d098c568a.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/2829148341.jpg" width="600" height="337" loading="lazy" alt=""></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published" datetime="2022-01-26 01:27:51 +0200">Jan 26, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">
<div class="content post e-content">
<p><strong>Day 87</strong></p>
<p>After getting some sleep at night we woke up for our first day in Bogota. Traditionally, we went out to a local mall to check ATMs, buy a SIM card and check the overall city environment. We are either becoming more experienced or Colombia has a good level of services, as we have taken care of all the business fast. When entering the mall we felt the difference in the country’s priorities. While in Brazil and Peru we always needed to show our vaccination passports or at least disinfect hands, in Colombia we only needed to allow dogs to sniff our bags to enter the mall.</p>
<p>We were living in a higher level <em>Chapinero</em> district and you could feel it when walking around. Although we didn’t have clear expectations of what the city will look like, it still surprised us. Everywhere around there were mostly red-brick buildings, lots of trees, and lots of bikers. It felt like a Western European city rather than a city in South America. Also, Bogota is referred to as a fridge of Colombia, as the temperature rarely goes above 20 degrees so it likely contributes to this feeling in the city.</p>
<p>We finished the day early as we felt tired and a bit dizzy.</p>
<p><img src="uploads/2022/0f1f06cd73.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/da3f6cb06d.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/bad711dcfc.jpg" width="600" height="337" loading="lazy" alt=""><img src="uploads/2022/cd44db606b.jpg" width="600" height="337" loading="lazy" alt=""></p>
</div>
<div class="list-post-date">
<a href="" class="u-url"><time class="dt-published" datetime="2022-01-26 00:48:25 +0200">Jan 26, 2022</time></a>
</div>
</div>
<div class="list-item h-entry">