Finding the index page.

This commit is contained in:
Tom Alexander
2023-12-17 15:45:50 -05:00
parent 0a4376dfb8
commit fdf84e3d0b
2 changed files with 28 additions and 0 deletions

View File

@@ -99,6 +99,10 @@ impl SiteRenderer {
// Steps: for each group, create a RenderBlogStream
//
// Steps: pass each RenderBlogStream to dust as the context to render index.html and any additional stream pages.
for blog_post in &self.blog_posts {
println!("{:?}", blog_post.get_date()?);
}
Ok(())
}