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