From 78f5fd64f9719157562d9eee8166fbc0a49de06f Mon Sep 17 00:00:00 2001 From: limepotato Date: Sat, 29 Jun 2024 01:40:11 -0600 Subject: [PATCH] disclaimer --- src/pages/blog/index.astro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index 98d9798..94499d5 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -8,6 +8,7 @@ import Layout from "../../layouts/Layout.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../../consts"; import { getCollection } from "astro:content"; import FormattedDate from "../../components/FormattedDate.astro"; +import type { setErrorMap } from "astro/zod"; const posts = (await getCollection("blog")).sort( (a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf() @@ -21,6 +22,8 @@ const posts = (await getCollection("blog")).sort(

The Blog Posts

This is where I post things and stuff, eventually...

+

This list is in chronological order oldest first, newest last

+

I think I may add a button that shows latest post at the top under rss, we'll see.