diff --git a/src/post/mod.rs b/src/post/mod.rs index ebe1be3..54e25d7 100644 --- a/src/post/mod.rs +++ b/src/post/mod.rs @@ -85,6 +85,7 @@ impl Into for Post { result.guid(guid); result.author(Some("me@christine.website".to_string())); result.content(self.body_html); + result.pub_date(self.front_matter.date); result.build().unwrap() }