diff --git a/public/img/guestbook/albert_pizza.webp b/public/img/guestbook/albert_pizza.webp deleted file mode 100644 index db40d2e..0000000 Binary files a/public/img/guestbook/albert_pizza.webp and /dev/null differ diff --git a/public/img/guestbook/azlen_pizza.webp b/public/img/guestbook/azlen_pizza.webp deleted file mode 100644 index 211c0b4..0000000 Binary files a/public/img/guestbook/azlen_pizza.webp and /dev/null differ diff --git a/public/img/guestbook/kai_pizza.webp b/public/img/guestbook/kai_pizza.webp deleted file mode 100644 index 45b1be9..0000000 Binary files a/public/img/guestbook/kai_pizza.webp and /dev/null differ diff --git a/public/img/guestbook/kristoffer_pizza.webp b/public/img/guestbook/kristoffer_pizza.webp deleted file mode 100644 index afcb5bd..0000000 Binary files a/public/img/guestbook/kristoffer_pizza.webp and /dev/null differ diff --git a/public/img/guestbook/luca_pizza.webp b/public/img/guestbook/luca_pizza.webp deleted file mode 100644 index cbd9bb5..0000000 Binary files a/public/img/guestbook/luca_pizza.webp and /dev/null differ diff --git a/public/img/guestbook/sid_pizza.webp b/public/img/guestbook/sid_pizza.webp deleted file mode 100644 index bc087e1..0000000 Binary files a/public/img/guestbook/sid_pizza.webp and /dev/null differ diff --git a/src/content/blog/i-updated-my-guestbook.md b/src/content/blog/i-updated-my-guestbook.md new file mode 100644 index 0000000..215480f --- /dev/null +++ b/src/content/blog/i-updated-my-guestbook.md @@ -0,0 +1,20 @@ +--- +title: "i updated my guestbook!" +pubDate: 'May 25 2025' +description: "" +draft: false +--- + +hello! + +just wanted to say i updated my [/guestbook](/guestbook) today! + +replaced my old one where people sent in pizza drawings with an easier one made by [Meadow](https://meadow.cafe/). + +currently it's an iframe, but i know i can use javascript to insert it as well. might change it in the future, we'll see. + +feel free to sign it or not :) + +--- + +> PS: maybe i should create an `/status`-page instead of my current [/twtxt.txt](/twtxt.txt) for these kinda updates? \ No newline at end of file diff --git a/src/data/bookshelf.json b/src/data/bookshelf.json index 45afc46..c97ee25 100644 --- a/src/data/bookshelf.json +++ b/src/data/bookshelf.json @@ -747,6 +747,10 @@ "name": "Want to read", "url": "https://kjelsrud.dev/logs/bookshelf/", "books": [ + { + "title": "Fanget av geografien - verden forklart med 12 enkle kart", + "author": "Tim Marshall, Grace Easton, Jessica Smith" + }, { "title": "Fraudcoin - 1000 år med inflasjon som politikk", "author": "Rune Østgård" diff --git a/src/data/watchlist.json b/src/data/watchlist.json index 513e89a..2919aed 100644 --- a/src/data/watchlist.json +++ b/src/data/watchlist.json @@ -2088,6 +2088,9 @@ "name": "Watchlist", "url": "https://kjelsrud.dev/logs/watchlist/", "tv": [ + { + "title": "The Two Popes" + }, { "title": "The Little Prince (2015)" }, diff --git a/src/pages/guestbook.astro b/src/pages/guestbook.astro index ea9b07b..0de6089 100644 --- a/src/pages/guestbook.astro +++ b/src/pages/guestbook.astro @@ -5,29 +5,7 @@ const visitors = guestbook["visitors"]; --- -
-

[ Guestbook ]

-

Last update: {guestbook.meta.lastModified}

-
-

Welcome to the digital pizzeria! Leave your mark by doodling a pizza slice, snapping a pic, and sharing it with me at pizza [at] kjelsrud [dot] dev with your name & social media / website. And remember, creativity knows no bounds! Just like in my sketch, where I went with a Bitcoin pizza slice!🪙

-

PS: This page was inspired by azlen.me!

-
-
- {visitors.map((visitor) => ( -
-
- -
-
- {visitor.name} ✿ - - {visitor.social}~ - -
-
-
-
- ))} -
+
+
diff --git a/src/styles/global.css b/src/styles/global.css index fca09f0..92dde28 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -44,6 +44,12 @@ hr { padding: 10px 0 0 0; } +iframe { + display: block; + margin: 1.05rem 0; + max-width: 100%; + border-radius: 1.05rem; +} .index a { color: var(--dark-link);} .index a:hover { text-decoration: underline 2px;}