From 324794a9e8d60c9e187dd8c24f9cae076e933142 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 1 Jan 2026 22:11:02 +0100 Subject: new home feed --- src/blog.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/blog.rs') diff --git a/src/blog.rs b/src/blog.rs index 9acb5e2..36204e7 100644 --- a/src/blog.rs +++ b/src/blog.rs @@ -17,12 +17,12 @@ static DIRECTORY: &str = "./blog"; #[derive(Clone)] pub struct Blogpost { - file_name: String, - title: String, - published_at: DateTime, - updated_at: Option>, - tags: Vec, - content: String, + pub file_name: String, + pub title: String, + pub published_at: DateTime, + pub updated_at: Option>, + pub tags: Vec, + pub content: String, } #[derive(Deserialize)] -- cgit