Add Links page, collection, and nav entry
CI / ci (push) Successful in 29s
CI / ci (pull_request) Successful in 28s
Docker / docker (pull_request) Successful in 17s

This commit is contained in:
2026-03-07 18:39:41 +01:00
parent 162100cd25
commit 321c4c6f04
8 changed files with 424 additions and 1 deletions
+13 -1
View File
@@ -29,4 +29,16 @@ const coffee = defineCollection({
}),
});
export const collections = { blog, coffee };
const links = defineCollection({
type: "content",
schema: z.object({
title: z.string(),
url: z.string().url(),
description: z.string(),
category: z.string().optional(),
date: z.coerce.date().optional(),
draft: z.boolean().optional().default(false),
}),
});
export const collections = { blog, coffee, links };
+8
View File
@@ -0,0 +1,8 @@
---
title: "32-Bit Cafe"
url: "https://32bit.cafe"
description: "A warm small-web corner full of personal pages, guides, and gentle encouragement to make something of your own on the internet."
category: "inspiration"
date: 2026-03-06
draft: false
---
+8
View File
@@ -0,0 +1,8 @@
---
title: "IndieWeb"
url: "https://indieweb.org"
description: "A lot of the values behind Hidden Den rhyme with this community: personal sites, ownership, and a web made of real places instead of only platforms."
category: "blogs"
date: 2026-03-07
draft: false
---
+8
View File
@@ -0,0 +1,8 @@
---
title: "Low-tech Magazine"
url: "https://solar.lowtechmagazine.com"
description: "Thoughtful writing about technology, infrastructure, energy, and limits. It is one of those rare places that feels both technical and deeply reflective."
category: "essays"
date: 2026-03-04
draft: false
---
+8
View File
@@ -0,0 +1,8 @@
---
title: "Privacy Guides"
url: "https://www.privacyguides.org"
description: "One of the more practical places for thinking about privacy tools without drifting too far into paranoia or purity spirals."
category: "tools"
date: 2026-03-05
draft: false
---
+8
View File
@@ -0,0 +1,8 @@
---
title: "The Marginalian"
url: "https://www.themarginalian.org"
description: "A long-running archive of essays, ideas, and literary wandering. Good when I want to remember that thoughtful writing can still feel generous and alive."
category: "essays"
date: 2026-03-03
draft: false
---