commit bae05c672e1d3cb732a356b34789fbf6152c5c2b Author: Pim van Pelt Date: Sun Jul 28 11:24:14 2024 +0200 Initial checkin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c019bf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.hugo* +public/ +resources/_gen/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c4ec18a --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-theme-notrack"] + path = themes/hugo-theme-notrack + url = https://github.com/gevhaz/hugo-theme-notrack diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..6bf6f1a --- /dev/null +++ b/config.toml @@ -0,0 +1,35 @@ +baseURL = 'https://sabbatical.ipng.nl/' +languageCode = 'en-us' +title = "Pim's Sabbatical 2024" +theme = 'hugo-theme-notrack' + +mainSections = ["blog"] +# disqusShortname = "example" +paginate = 4 + +[params] + author = "Pim van Pelt" + siteHeading = "Sabbatical 2024" # defaults to author + favicon = "favicon.ico" # Adds a small icon next to the page title in a tab + showBlogLatest = true + mainSections = ["blog"] + showTaxonomyLinks = false + nBlogLatest = 14 # number of blog post om the home page + blogLatestHeading = "Latest Dabblings" + footer = "This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License." + + [params.social] + email = "pim+sabbatical@ipng.nl" + mastodon = "IPngNetworks" + twitter = "IPngNetworks" + linkedin = "pimvanpelt" + instagram = "IPngNetworks" + +[taxonomies] + year = "year" + month = "month" + tags = "tags" + categories = "categories" + +[permalinks] + blog = "/blog/:year/:month/:day/:slug" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..bb6191a --- /dev/null +++ b/content/_index.md @@ -0,0 +1,21 @@ +--- +title: "" +date: 2024-07-27 +draft: false +menu: + main: + name: "Home" + weight: 1 +--- + +I moved from the Netherlands to Switzerland in August 2006, and I've been working at Google for +about 18 years now. I have had the most wonderful time so far! In the Summer of 2024, I decided to +take a little break. Thanks to the awesome support of my manager and the teams I work with, my +request for a Sabbatical was approved and the date set for the 29th of July through the 3rd of +November, just over three months of time off. + +If you follow on any form of social, you'll know that I like to write. My website +[[IPng.ch](https://ipng.ch/s/articles/)] is full of nerdy stories. But this website serves a +different purpose. Because a sabbatical is something that not many people have the privilege to be +able to do, and because I plan on doing only one of these in my life, I've decided to mark my +travels with a little story and some pictures of every day of my time off. diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..5af999a --- /dev/null +++ b/content/about.md @@ -0,0 +1,44 @@ +--- +title: "About this website" +date: 2024-07-28 +menu: + main: + name: "About" + weight: 255 +--- + +{{< contact-box >}} + +Hi! I'm Pim and I'm writing this on Sunday July 28th of 2024. + +As of today, I've been working at Google for about 18 years now. I started in 2006, and have had +the most wonderful time so far! In the Summer of 2024, I decided to take a little break. Thanks to +the awesome support of my manager and the teams I work with, my request for a Sabbatical was +approved and the date set for the 29th of July through the 3rd of November, just over three months +of time off. + +If you follow on any form of social, you'll know that I like to write. My website +[[IPng.ch](https://ipng.ch/s/articles/)] is full of nerdy stories. But this website serves a +different purpose. Because a sabbatical is something that not many people have the privilege to be +able to do, and because I plan on doing only one of these in my life, I've decided to mark my +travels with a little story and some pictures of every day of my time off. + +I've done this before, notably learning from my mom. When we used to go on vacation, she would +scribble little stories of the day in a notepad, and I would sometimes help out with that. After I +left the house, I kept up the habit in my own travels. Here's a few examples: + +* 2010: Roadtrip from New York to Los Angeles -- [[Travel Blog](https://2010roadtripnyla.weirdnet.nl/)] +* 2013: Roadtrip to the UK and Ireland -- [[Travel Blog](https://2013roadtripukie.weirdnet.nl/)] +* 2022: Roadtrip to the North Cape -- [[Travel Blog](https://2022roadtripnose.weirdnet.nl/)] + +When I was in Norway I hiked Besseggen, which was a truly majestic albeit physically rough +experience, it took us about 10 hours. I had hiked this trail may times before, and I remember this +one time that I hiked it alone as a teenager, and it not being ... as long. So I called my mom, she +sifted through her travel journals, and read back to me the log entry of me getting up at 6am and +returning to the campsite at around noon. This logbooks and journals mean a lot to me personally, +and from time to time I will float away and re-read the 2010 New York to LA roadtrip, or the fun we +had at the Swindon Roundabout in 2013, or indeed, the hike to the Real North Cape in 2022. + +This is why I've decided to write about the things I plan on doing during my sabbatical. I do expect +to read it in the future, just as I have done the other journies I took the time to document. The +site, in other words, is more for me than it is for you, but you're welcome to read along :) diff --git a/content/blog/_index.md b/content/blog/_index.md new file mode 100644 index 0000000..d07308d --- /dev/null +++ b/content/blog/_index.md @@ -0,0 +1,9 @@ +--- +title: "Journal of joyous journies" +date: 2024-07-28 +menu: + main: + name: "Blog" + weight: 50 + url: "blog" +--- diff --git a/content/gallery.md b/content/gallery.md new file mode 100644 index 0000000..b42096d --- /dev/null +++ b/content/gallery.md @@ -0,0 +1,15 @@ +--- +title: 'Gallery' +date: 2024-07-28 +menu: + main: + name: "Gallery" + weight: 200 +--- + +{{< gallery-category >}} + {{< gallery-photo fn="2024-07-27/IMG_0394.jpg" caption="Prost" >}} +{{< /gallery-category >}} + +{{< gallery-modal >}} +{{< gallery-script >}} diff --git a/static/img/fullsize/2024-07-27/IMG_0394.jpg b/static/img/fullsize/2024-07-27/IMG_0394.jpg new file mode 100644 index 0000000..3810a4a Binary files /dev/null and b/static/img/fullsize/2024-07-27/IMG_0394.jpg differ diff --git a/static/img/thumbnails/2024-07-27/IMG_0394.jpg b/static/img/thumbnails/2024-07-27/IMG_0394.jpg new file mode 100644 index 0000000..1a806bc Binary files /dev/null and b/static/img/thumbnails/2024-07-27/IMG_0394.jpg differ diff --git a/themes/hugo-theme-notrack b/themes/hugo-theme-notrack new file mode 160000 index 0000000..9dad9fe --- /dev/null +++ b/themes/hugo-theme-notrack @@ -0,0 +1 @@ +Subproject commit 9dad9fec2e0eefeaf441f9da6690ad6976ecd196