From e1ec4a112907f4aebad56b2b388eceb3969e6e88 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Fri, 12 Jun 2026 18:30:42 -0700 Subject: unify microblog --- src/pages/index.astro | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/pages/index.astro') diff --git a/src/pages/index.astro b/src/pages/index.astro index c2129e0..3886d8f 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -9,6 +9,11 @@ import FormattedDate from "../components/FormattedDate.astro"; const posts = (await getCollection("blog")).sort( (a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf() ); + +const microposts = (await getCollection("micro")).sort( + (a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf() +); + --- @@ -50,6 +55,22 @@ const posts = (await getCollection("blog")).sort( } +

Recent MicroPosts

+
+ +

👋 Greetings, Adventurer

@@ -58,6 +79,9 @@ const posts = (await getCollection("blog")).sort( archive my thoughts and processes on various topics or projects. It'll pretty much just be whatever I feel like writing about, posts will be very infrequent so don't expect much.

+

+ Blog posts are regular long form writing about some technical concept, MicroPosts are all over the place and are usually quite unstructured. The RSS feed combines both of these. +

Check out the main site as well: pinapelz.com

-- cgit v1.2.3