blob: c638bfb233588f51ad4b8125bae0fda9a38b74eb (
plain) (
tree)
|
|
@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()
|