hyaenidae/toolkit/templates/centered.rs.html

12 lines
207 B
HTML
Raw Normal View History

2020-12-16 02:40:41 +00:00
@(padded: bool, body: Content)
@if padded {
<div class="toolkit-centered toolkit-centered__padded">
@:body()
</div>
} else {
<div class="toolkit-centered">
@:body()
</div>
}