hyaenidae/toolkit-examples/templates/section.rs.html
2020-12-15 20:40:41 -06:00

17 lines
331 B
HTML

@use hyaenidae_toolkit::templates::centered;
@(title: &str, description: &str, body: Content)
<section>
@:centered(true, {
<div class="section-heading">
<h2 class="title">@title</h2>
<p class="description">@description</p>
</div>
})
<ul>
@:body()
</ul>
</section>