From 939dcdf548e7a0c10d1173e5335bf7a564f6ffbd Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 10 May 2025 04:33:37 -0700 Subject: feat(blog): Change post metadata display format --- src/modules/blog/module.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules') diff --git a/src/modules/blog/module.rs b/src/modules/blog/module.rs index 71b3a46..f68c2bc 100644 --- a/src/modules/blog/module.rs +++ b/src/modules/blog/module.rs @@ -367,9 +367,9 @@ fn construct_header( } else { "" }, - field!(author, "Author: {}\n"), - field!(created, "Created: {}\n"), - field!(last_modified, "Last Modified: {}\n"), + field!(author, "Written by {}"), + field!(created, " on {}"), + field!(last_modified, " (last modified on {})\n"), field!(description, "\n{}\n"), ), post.description().clone().unwrap_or_default(), -- cgit v1.2.3