aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-05-10 04:33:37 -0700
committerFuwn <[email protected]>2025-05-10 04:33:37 -0700
commit939dcdf548e7a0c10d1173e5335bf7a564f6ffbd (patch)
treeec66bc7d2bccec416c7211084970e7a1e1b2c188 /src
parentbuild(container): Clean macOS-specific files in container build step (diff)
downloadlocus-939dcdf548e7a0c10d1173e5335bf7a564f6ffbd.tar.xz
locus-939dcdf548e7a0c10d1173e5335bf7a564f6ffbd.zip
feat(blog): Change post metadata display format
Diffstat (limited to 'src')
-rw-r--r--src/modules/blog/module.rs6
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(),