From 8ce16daa58785be16bf588dc948886e1559e075d Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 9 Feb 2025 03:13:28 -0500 Subject: [PATCH] Only display post date in blurb Still dispay the datetime in the hover --- lib/Render/Post.rakumod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Render/Post.rakumod b/lib/Render/Post.rakumod index 1724c74..faed911 100644 --- a/lib/Render/Post.rakumod +++ b/lib/Render/Post.rakumod @@ -18,9 +18,9 @@ sub post-date(Post:D $post) is export { ); div :class, :title("Posted At $timestamp"), [ - icon 'time'; + icon 'calendar'; ' '; - $timestamp + $datetime.Date.Str ] }