hyaenidae/toolkit/templates/nested.rs.html

11 lines
187 B
HTML

@(dark: bool, body: Content)
@if dark {
<div class="toolkit-nested toolkit-dark">
@:body()
</div>
} else {
<div class="toolkit-nested">
@:body()
</div>
}