maj/site/templates/page.rs.html

14 lines
145 B
HTML
Raw Normal View History

2020-08-02 02:42:44 +00:00
@use super::{header_html, footer_html};
@(title: String, body: impl ToHtml)
@:header_html(&title)
<p>
@body
</p>
<hr />
@:footer_html()