album/templates/index.rs.html
2017-02-01 15:32:39 +01:00

12 lines
263 B
HTML

@use ::Link;
@use rphotos::models::Photo;
@use templates::{page_base, img_link};
@(title: &str, lpath: Vec<Link>, user: Option<String>, photos: Vec<Photo>)
@:page_base(title, lpath, user, {
<div class="group">
@for p in photos {@:img_link(p)}
</div>
})