diff options
| author | Fuwn <[email protected]> | 2025-05-10 04:33:37 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-10 04:33:37 -0700 |
| commit | 939dcdf548e7a0c10d1173e5335bf7a564f6ffbd (patch) | |
| tree | ec66bc7d2bccec416c7211084970e7a1e1b2c188 | |
| parent | build(container): Clean macOS-specific files in container build step (diff) | |
| download | locus-939dcdf548e7a0c10d1173e5335bf7a564f6ffbd.tar.xz locus-939dcdf548e7a0c10d1173e5335bf7a564f6ffbd.zip | |
feat(blog): Change post metadata display format
| -rw-r--r-- | src/modules/blog/module.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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(), |