From cae601b0fe048add790fa3b4341d76c973f14b2b Mon Sep 17 00:00:00 2001 From: Matt Kosarek Date: Tue, 28 Apr 2026 19:50:26 -0400 Subject: Publish new blog post + style changes --- src/pages/posts/index.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/pages/posts') diff --git a/src/pages/posts/index.astro b/src/pages/posts/index.astro index b3ea740..447384c 100644 --- a/src/pages/posts/index.astro +++ b/src/pages/posts/index.astro @@ -28,7 +28,9 @@ function formatDate(dateStr: string): string {
  • {post.data.title}

    {formatDate(post.data.date)}

    -

    {post.data.tags.join(',')}

    + {post.data.tags.map((tag: string) => ( +

    {tag}

    + ))}
  • ))} -- cgit v1.2.1