summaryrefslogblamecommitdiff
path: root/templates/post.rs.html
blob: c638bfb233588f51ad4b8125bae0fda9a38b74eb (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                            
@use super::{header_html, footer_html};
@use crate::blog::post::Post;

@(post: Post, body: impl ToHtml)

@:header_html(Some(&post.front_matter.title.clone()), None))

@body

@:footer_html()