Compare commits

...

4 commits

Author SHA1 Message Date
e105c99051
📨 New blogpost! "i updated my guestbook!"
All checks were successful
Deploy website / build-and-deploy (push) Successful in 7m1s
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2025-05-25 15:37:30 +02:00
4d5b998bcb
📚 Update want to read
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2025-05-25 15:28:45 +02:00
6b9e23773c
🎬 Update watchlist
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2025-05-25 15:25:18 +02:00
eb214f5173
♻️ Refactored guestbook
Started using https://guestbooks.meadow.cafe/ instead

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2025-05-25 15:23:34 +02:00
11 changed files with 35 additions and 24 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 260 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 463 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 313 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 KiB

View file

@ -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?

View file

@ -747,6 +747,10 @@
"name": "Want to read", "name": "Want to read",
"url": "https://kjelsrud.dev/logs/bookshelf/", "url": "https://kjelsrud.dev/logs/bookshelf/",
"books": [ "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", "title": "Fraudcoin - 1000 år med inflasjon som politikk",
"author": "Rune Østgård" "author": "Rune Østgård"

View file

@ -2088,6 +2088,9 @@
"name": "Watchlist", "name": "Watchlist",
"url": "https://kjelsrud.dev/logs/watchlist/", "url": "https://kjelsrud.dev/logs/watchlist/",
"tv": [ "tv": [
{
"title": "The Two Popes"
},
{ {
"title": "The Little Prince (2015)" "title": "The Little Prince (2015)"
}, },

View file

@ -5,29 +5,7 @@ const visitors = guestbook["visitors"];
--- ---
<SectionContainer> <SectionContainer>
<main class="flex flex-col flex-1 gap-4 mt-4"> <main class="flex flex-col flex-1">
<h1 class="text-3xl font-extrabold">[ Guestbook ]</h1> <iframe src="https://guestbooks.meadow.cafe/guestbook/593" width="100%" height="1500" frameborder="0"></iframe>
<blockquote><p><em>Last update: {guestbook.meta.lastModified}</em></p></blockquote>
<div class="flex flex-col gap-2">
<p class="blog">Welcome to the <i>digital pizzeria</i>! Leave your mark by doodling a pizza slice, snapping a pic, and sharing it with me at <code>pizza [at] kjelsrud [dot] dev</code> 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!🪙</p>
<p class="blog italic text-xs"><strong>PS:</strong> This page was inspired by <a href="https://azlen.me/doorstep">azlen.me</a>!</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
{visitors.map((visitor) => (
<div class="flex flex-col items-center">
<figure class="relative">
<img src={visitor.image} class="object-cover h-full md:h-[300px] w-full rounded-sm"/>
<figcaption class="absolute bottom-2 left-2 bg-black text-white px-2 py-1 rounded-xl text-xs">
<div class="guestbook">
{visitor.name} ✿
<a href={visitor.sociallink} target="_blank" class="px-2 bg-gray-500 rounded-lg italic">
{visitor.social}~
</a>
</div>
</figcaption>
</figure>
</div>
))}
</div>
</main> </main>
</SectionContainer> </SectionContainer>

View file

@ -44,6 +44,12 @@ hr {
padding: 10px 0 0 0; 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 { color: var(--dark-link);}
.index a:hover { text-decoration: underline 2px;} .index a:hover { text-decoration: underline 2px;}