From 27b73d8f0c30b810863e7e3d888718f3e6516727 Mon Sep 17 00:00:00 2001 From: limepotato Date: Wed, 26 Jun 2024 18:21:40 -0600 Subject: [PATCH] rss feed --- src/pages/blog/index.astro | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index e12d822..98d9798 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -2,7 +2,8 @@ import BaseHead from "../../components/Head.astro"; import Header from "../../components/Header.astro"; import Footer from "../../components/Footer.astro"; -import Card from "../../components/Card-Blog.astro"; +import BlogCard from "../../components/Card-Blog.astro"; +import Card from "../../components/Card.astro" import Layout from "../../layouts/Layout.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../../consts"; import { getCollection } from "astro:content"; @@ -21,12 +22,20 @@ const posts = (await getCollection("blog")).sort(

The Blog Posts

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

-
+
+ +
{ posts.map((post) => ( <>