Invoke dust to render the stream pages.

At this point the render_blog_stream function is done, but RenderBlogStream::new needs to be implemented to actually generate the render context. The body of this function should be similar to convert_blog_post_page_to_render_context.
This commit is contained in:
Tom Alexander
2023-12-17 17:26:15 -05:00
parent 2ba4a5e3d7
commit cbe2010407
3 changed files with 29 additions and 10 deletions

View File

@@ -28,6 +28,8 @@ impl RenderBlogStream {
output_directory: &Path,
output_file: &Path,
original: &[&BlogPost],
older_link: Option<String>,
newer_link: Option<String>,
) -> Result<RenderBlogStream, CustomError> {
todo!()
}