diff options
author | Adam T. Carpenter <atc@53hor.net> | 2024-09-14 20:54:44 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2024-09-14 20:54:44 -0400 |
commit | 18339f611fd17e1300593edd65adf7604a39ad72 (patch) | |
tree | 3f5238afaf4cac98640a50b9b7954be7bbfbe3f6 /src/views/post.rs | |
parent | 9f341d439f7aa5fd2365024169ead2d6bdc3210c (diff) | |
download | carpentertutoring-18339f611fd17e1300593edd65adf7604a39ad72.tar.xz carpentertutoring-18339f611fd17e1300593edd65adf7604a39ad72.zip |
feat: working rudimentary blog presentation
Diffstat (limited to 'src/views/post.rs')
-rw-r--r-- | src/views/post.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/views/post.rs b/src/views/post.rs new file mode 100644 index 0000000..4f0554b --- /dev/null +++ b/src/views/post.rs @@ -0,0 +1,15 @@ +use crate::helpers::*; +use crate::posts::abstractions::post::Post; +use askama::Template; + +#[derive(Template)] +#[template(path = "post.html")] +pub struct PostView<P: Post> { + post: P, +} + +impl<P: Post> PostView<P> { + pub fn with_post(post: P) -> Self { + Self { post } + } +} |