diff options
Diffstat (limited to 'src/views/posts.rs')
-rw-r--r-- | src/views/posts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/posts.rs b/src/views/posts.rs index 82b5996..5091059 100644 --- a/src/views/posts.rs +++ b/src/views/posts.rs @@ -3,7 +3,7 @@ use crate::posts::abstractions::post::Post; use askama::Template; #[derive(Template)] -#[template(path = "posts.html")] +#[template(path = "posts.html.j2")] pub struct PostsView<P: Post> { posts: Vec<P>, } |