hyaenidae/toolkit-examples/templates/section.rs.html

17 lines
331 B
HTML
Raw Permalink Normal View History

2020-12-16 02:40:41 +00:00
@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>