hyaenidae/toolkit/templates/banner.rs.html

11 lines
195 B
HTML
Raw Normal View History

@use crate::banner::Banner;
@use crate::templates::image;
@(banner: &Banner)
<div class="@banner.class_string()">
@if let Some(img) = banner.image_opt() {
@:image(img)
}
</div>