From de1885fe8fe279c95c2c2b101fad916958dadd4a Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 12 Sep 2024 22:10:31 +0000 Subject: Added Pagination component --- src/components/PostSummary.astro | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/components/PostSummary.astro (limited to 'src/components/PostSummary.astro') diff --git a/src/components/PostSummary.astro b/src/components/PostSummary.astro new file mode 100644 index 0000000..2f98130 --- /dev/null +++ b/src/components/PostSummary.astro @@ -0,0 +1,51 @@ +--- +import { type CollectionEntry } from "astro:content"; +import dayjs from "dayjs"; + +type Props = { + readonly post: CollectionEntry<"blog">; +}; + +const { post } = Astro.props; +--- + + + +
+

{post.data.title}

+
+ + +
+

{post.data.description}

+ Read More +
-- cgit v1.2.3