Only display post date in blurb

Still dispay the datetime in the hover
This commit is contained in:
Nathan McCarty 2025-02-09 03:13:28 -05:00
parent 5c569780dc
commit 8ce16daa58

View file

@ -18,9 +18,9 @@ sub post-date(Post:D $post) is export {
);
div :class<post-time>, :title("Posted At $timestamp"), [
icon 'time';
icon 'calendar';
'&nbsp;';
$timestamp
$datetime.Date.Str
]
}