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.