This commit is contained in:
Smaug123
2024-03-13 15:56:24 +00:00
parent a680d7badf
commit ce38f6ba39
3 changed files with 99 additions and 16 deletions

View File

@@ -0,0 +1,80 @@
---
lastmod: "2024-03-13T12:18:00.0000000+00:00"
author: patrick
date: "2024-03-13T12:18:00.0000000+00:00"
title: Trip to Tromsø
summary: "Travelogue of my trip to Norway."
gallery: true
---
# Friday (2024-03-08)
* Wagamama's at Gatwick
* Toblerone
* Plane to Tromsø!
* Landed 2340 local time
* About an hour between landing and getting a taxi
* First sight of tunnel system under Tromsø mountains
{{< foldergallery src="images/galleries/Tromso2024/1-AirportOutbound" >}}
Northern Lights visible from plane; they turned off the cabin lights so we could see.
{{< foldergallery src="images/galleries/Tromso2024/2-NorthernLightsFromPlane" summary="Northern Lights viewed from the plane" >}}
# Saturday (2024-03-09)
* Breakfast (great smoked salmon and pickled herring, scrambled eggs, mushrooms, beans, bread, butter, apple jam)
* Ran into some lost tourists, resulting in a rainy walk over [bridge to east](https://en.wikipedia.org/wiki/Troms%C3%B8_Bridge)
{{< foldergallery src="images/galleries/Tromso2024/3-TromsoWalk" >}}
* [Arctic cathedral](https://www.ishavskatedralen.no/en/the-arctic-cathedral/)
{{< foldergallery src="images/galleries/Tromso2024/4-Cathedral" >}}
* [Cable car](https://www.fjellheisen.no/engelsk/fjellheisen-home) up mountain, vue panoramique
{{< foldergallery src="images/galleries/Tromso2024/5-Viewpoint" >}}
* Back to hotel, sauna
* Cinnamon bun and golden milk at [Pust Kafé](https://www.kafe.pust.io/) (maximum bougie London energy)
* [Polar museum](https://en.uit.no/tmu/polarmuseet)
{{< foldergallery src="images/galleries/Tromso2024/6-PolarMuseum" >}}
* Carrot cake and Lady Grey tea at hotel
{{< foldergallery src="images/galleries/Tromso2024/7-Cake" >}}
* Tea at hotel, sauna again and jacuzzi outside
{{< foldergallery src="images/galleries/Tromso2024/8-Jacuzzi" >}}
# Sunday (2024-03-10)
{{< foldergallery src="images/galleries/Tromso2024/9-BreakfastSunday" summary="Breakfast photos" >}}
* [Snowshoe walk](https://www.wanderingowl.com/tour/tromso/winter-walk-on-the-wild-side-troms%C3%B8/P7YEHB/) at Kattfjordeidet
{{< foldergallery src="images/galleries/Tromso2024/10-Snowshoes" summary="My photos" >}}
{{< foldergallery src="images/galleries/Tromso2024/11-SnowshoesOfficial" summary="Photos from our guide Evgeni" >}}
* [Aurora tour](https://auroratour.no/about-us/), ending up around [Skibotn](https://en.wikipedia.org/wiki/Skibotn); back around 0230 local time
{{< foldergallery src="images/galleries/Tromso2024/12-NorthernLights" summary="My photos" >}}
{{< foldergallery src="images/galleries/Tromso2024/13-NorthernLightsOfficial" summary="Photos from our guide Marcin" >}}
# Monday (2024-03-11)
* [Husky sledding](https://tromsodogsledding.com/)
{{< foldergallery src="images/galleries/Tromso2024/14-Huskies" >}}
* Jacuzzi again
{{< foldergallery src="images/galleries/Tromso2024/15-JacuzziAgain" >}}
# Tuesday (2024-03-12)
* [Glass blowing workshop](https://www.blaast.no/)
{{< foldergallery src="images/galleries/Tromso2024/18-GlassBlower" >}}
* More buns at Pust
{{< foldergallery src="images/galleries/Tromso2024/17-Cake" >}}
* [Aquarium](https://polaria.no/en/) (featuring seals!)
{{< foldergallery src="images/galleries/Tromso2024/16-Aquarium" >}}
* Plane to Luton
* Arrived home 0120 GMT
# Stats
* Nikoli-style puzzles solved: 48
* Saunas: 7
* Jacuzzis: 2
* Cardamom buns: 2
* Items of clothing lost: 1

View File

@@ -1,3 +1,6 @@
<details>
{{ $summary := default "Click to view gallery" (.Get "summary") }}
<summary>{{ $summary }}</summary>
<div class="gallery">
{{ $base := .Get "src" }}
{{ $path := print "static/" (.Get "src") }}
@@ -7,7 +10,7 @@
{{- $isthumb := .Name | findRE ($thumbext | printf "%s\\.") }}<!-- is the current file a thumbnail image? -->
{{- $isimg := lower .Name | findRE "\\.(gif|jpg|jpeg|tiff|png|bmp)" }}<!-- is the current file an image? -->
{{- if and $isimg (not $isthumb) }}
{{- $thumb := .Name | replaceRE "(\\.)" ($thumbext | printf "%s.") }}
{{- $thumb := .Name | replaceRE "(\\.[^.]+)" ($thumbext | printf "%s.jpg") }}
{{- $alttextfile := .Name | replaceRE "(\\..+)" ".md" }}
{{- $alttext := printf "%s/%s" $path $alttextfile | os.ReadFile }}
<a data-fancybox="gallery" href="/{{ $base }}/{{ .Name }}">
@@ -15,4 +18,5 @@
</a>
{{- end }}
{{ end }}
</div>
</div>
</details>