blob: 321dbecb86e1613e3e1d344688fc991ffe9cfd00 (
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)
<h1>@post.front_matter.title.clone()</h1>
<span>
<small>Posted @post.clone().date.format("%B %d %Y") by
@post.clone().author</small>
</span>
@body
@:footer_html()
|