hyaenidae/server/templates/layouts/main.rs.html

15 lines
359 B
HTML
Raw Normal View History

2021-01-08 04:44:43 +00:00
@use crate::templates::layouts::root;
@use hyaenidae_toolkit::templates::centered;
@(title: &str, description: &str, head: Content, body: Content)
@:root(title, description, { @:head() }, {
@:centered(true, {
<h2 class="title">@title</h2>
<p class="description">@description</p>
})
@:centered(false, {
@:body()
})
})