Compare commits
3 Commits
77dd99ee2b
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 21c1d22859 | |||
| 68b328dabc | |||
| 817bd17959 |
@@ -4,12 +4,12 @@ date: '2024-05-28 07:03'
|
|||||||
template: entry
|
template: entry
|
||||||
published: true
|
published: true
|
||||||
hero_image: 'photo-1.jpg'
|
hero_image: 'photo-1.jpg'
|
||||||
lat: ''
|
lat: '45.5285'
|
||||||
lng: ''
|
lng: '13.5680'
|
||||||
location_city: ''
|
location_city: Piran
|
||||||
location_country: ''
|
location_country: Slovenia
|
||||||
weather_temp_c: ''
|
weather_temp_c: '21'
|
||||||
weather_desc: ''
|
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.
|
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.
|
||||||
|
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 202 KiB After Width: | Height: | Size: 202 KiB |
|
Before Width: | Height: | Size: 237 KiB After Width: | Height: | Size: 237 KiB |
|
Before Width: | Height: | Size: 302 KiB After Width: | Height: | Size: 302 KiB |
@@ -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
|
||||||
|
---
|
||||||
@@ -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: ''
|
||||||
|
---
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: 'Northern America 2024'
|
title: 'Northern America 2024'
|
||||||
template: trip
|
template: trip
|
||||||
date: '2024-05-28'
|
date: '2024-07-21'
|
||||||
date_start: '2024-05-28'
|
date_start: '2024-07-21'
|
||||||
date_end: '2024-08-07'
|
date_end: '2024-08-07'
|
||||||
cover_image: ''
|
cover_image: ''
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -457,8 +457,10 @@ body::after {
|
|||||||
|
|
||||||
.pswp__bg { background: #000; }
|
.pswp__bg { background: #000; }
|
||||||
|
|
||||||
/* iOS Safari: 100vh freezes when address bar hides; dvh tracks the live viewport */
|
/* pswp.css loads in <body> after this stylesheet, so !important is needed to win */
|
||||||
.pswp { height: 100dvh; }
|
.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 */
|
/* Keyboard arrow navigation slide-in animations */
|
||||||
.pswp-key-from-right { animation: pswpKeyFromRight 0.35s cubic-bezier(0.4, 0, 0.22, 1) both; }
|
.pswp-key-from-right { animation: pswpKeyFromRight 0.35s cubic-bezier(0.4, 0, 0.22, 1) both; }
|
||||||
|
|||||||