summaryrefslogtreecommitdiff
path: root/src/posts/fs_post.rs
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2024-09-14 20:54:44 -0400
committerAdam T. Carpenter <atc@53hor.net>2024-09-14 20:54:44 -0400
commit18339f611fd17e1300593edd65adf7604a39ad72 (patch)
tree3f5238afaf4cac98640a50b9b7954be7bbfbe3f6 /src/posts/fs_post.rs
parent9f341d439f7aa5fd2365024169ead2d6bdc3210c (diff)
downloadcarpentertutoring-18339f611fd17e1300593edd65adf7604a39ad72.tar.xz
carpentertutoring-18339f611fd17e1300593edd65adf7604a39ad72.zip
feat: working rudimentary blog presentation
Diffstat (limited to 'src/posts/fs_post.rs')
-rw-r--r--src/posts/fs_post.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/posts/fs_post.rs b/src/posts/fs_post.rs
index e767803..f83ff4a 100644
--- a/src/posts/fs_post.rs
+++ b/src/posts/fs_post.rs
@@ -14,7 +14,7 @@ impl FsPost {
impl Post for FsPost {
fn get_title(&self) -> &str {
- self.file.file_name().unwrap().to_str().unwrap()
+ self.file.file_stem().unwrap().to_str().unwrap()
}
fn get_article(&self) -> Cow<str> {