maj/site/templates/page.rs.html

14 lines
145 B
HTML

@use super::{header_html, footer_html};
@(title: String, body: impl ToHtml)
@:header_html(&title)
<p>
@body
</p>
<hr />
@:footer_html()