From 27153476429c4a85630dedcf940a50089ea02151 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 4 Feb 2024 00:09:03 -0500 Subject: Made card more consistent; Guestbook submits; Web analytics --- src/pages/blog/index.astro | 29 +++++++++++++------------ src/pages/blog/tags/[tag].astro | 20 ++++++++++-------- src/pages/guestbook.astro | 47 +++++++++++++++++++++++++++++++---------- src/pages/projects.astro | 42 ++++-------------------------------- 4 files changed, 66 insertions(+), 72 deletions(-) (limited to 'src/pages') diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index a6b6855..5e4c619 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -8,20 +8,21 @@ const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate ---
- {allBlogPosts.map((post) => ( -
-

{post.data.title}

- {formatDate(post.data.pubDate)} -

{post.data.description}

-
- {post.data.tags.map((tag) => ( - {tag} - ))} -
-
- )) - } - +
+ {allBlogPosts.map((post) => ( +
+

{post.data.title}

+ {formatDate(post.data.pubDate)} +

{post.data.description}

+
+ {post.data.tags.map((tag) => ( + {tag} + ))} +
+
+ )) + } +
-- cgit v1.2.3