From a9ef6fc1e2cb8169bd270ab9c64d43244fa89aa0 Mon Sep 17 00:00:00 2001 From: Dilson's Pickles Date: Tue, 29 Aug 2023 16:17:12 +1000 Subject: [PATCH] Limit blog card title length --- src/components/card/BlogListingCard.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/card/BlogListingCard.astro b/src/components/card/BlogListingCard.astro index 52b30ff..bf1ccc4 100644 --- a/src/components/card/BlogListingCard.astro +++ b/src/components/card/BlogListingCard.astro @@ -25,7 +25,7 @@ const { title, description, href, thumbnail, author, date } = {date}

- {title} + {title.slice(0, 100)}...