Compare commits

..

3 Commits

Author SHA1 Message Date
m038 21c1d22859 fix: PhotoSwipe bg doesn't cover bottom — add !important and pin bg to viewport 2026-06-22 09:11:52 +02:00
m038 68b328dabc feat: enrich Slovenia 2024 Piran entry with coords and weather 2026-06-22 09:07:17 +02:00
m038 817bd17959 feat: split Slovenia 2024 into its own trip
Move Piran entry out of us-canada-mex-2024 into a new slovenia-2024 trip.
Rename entry folder to match the post title convention.
Fix us-canada-mex-2024 date_start to 2024-07-21 (first actual US entry).
2026-06-22 09:06:00 +02:00
12 changed files with 44 additions and 10 deletions
@@ -4,12 +4,12 @@ date: '2024-05-28 07:03'
template: entry
published: true
hero_image: 'photo-1.jpg'
lat: ''
lng: ''
location_city: ''
location_country: ''
weather_temp_c: ''
weather_desc: ''
lat: '45.5285'
lng: '13.5680'
location_city: Piran
location_country: Slovenia
weather_temp_c: '21'
weather_desc: sunny
---
A sunny day in Piran. We drove from Ljubljana through the beautiful Slovenian countryside. The more west we went, the more Mediterranean the landscape felt. Piran is a cute, Mediterranean harbor town, with little streets, squares and no cars. The view from the old fortification walls was great and the climb in the warm weather gave us a sense of accomplishment which we rewarded with a well deserved ice cream.
@@ -0,0 +1,11 @@
---
title: 'The Journey'
template: dailies
content:
items: '@self.children'
order:
by: date
dir: desc
filter:
published: true
---
@@ -0,0 +1,4 @@
---
title: 'Trip Map'
template: map
---
@@ -0,0 +1,4 @@
---
title: 'Trip Stats'
template: stats
---
@@ -0,0 +1,5 @@
---
title: Stories
template: stories
published: true
---
+8
View File
@@ -0,0 +1,8 @@
---
title: 'Slovenia 2024'
template: trip
date: '2024-05-28'
date_start: '2024-05-28'
date_end: '2024-05-28'
cover_image: ''
---
+2 -2
View File
@@ -1,8 +1,8 @@
---
title: 'Northern America 2024'
template: trip
date: '2024-05-28'
date_start: '2024-05-28'
date: '2024-07-21'
date_start: '2024-07-21'
date_end: '2024-08-07'
cover_image: ''
---
+4 -2
View File
@@ -457,8 +457,10 @@ body::after {
.pswp__bg { background: #000; }
/* iOS Safari: 100vh freezes when address bar hides; dvh tracks the live viewport */
.pswp { height: 100dvh; }
/* pswp.css loads in <body> after this stylesheet, so !important is needed to win */
.pswp { height: 100dvh !important; }
/* Pin bg directly to viewport so it can't be cut short by parent height rounding */
.pswp__bg { position: fixed !important; inset: 0 !important; }
/* Keyboard arrow navigation slide-in animations */
.pswp-key-from-right { animation: pswpKeyFromRight 0.35s cubic-bezier(0.4, 0, 0.22, 1) both; }