diff --git a/src/components/PostCard.astro b/src/components/PostCard.astro index ebceb54..654adbb 100644 --- a/src/components/PostCard.astro +++ b/src/components/PostCard.astro @@ -10,15 +10,17 @@ const { title, description: blurb, pubDate } = post.data; const { slug } = post; --- -
+
{blurb || "No description available."}
diff --git a/src/components/ProjectCard.astro b/src/components/ProjectCard.astro index 27b2103..1700e78 100644 --- a/src/components/ProjectCard.astro +++ b/src/components/ProjectCard.astro @@ -11,7 +11,7 @@ const { project } = Astro.props; ---+
{talk.description}
diff --git a/src/pages/posts.astro b/src/pages/posts.astro index dce7ac2..789edda 100644 --- a/src/pages/posts.astro +++ b/src/pages/posts.astro @@ -21,9 +21,25 @@ const sortedPosts = posts.sort( Posts