album/templates/index.rs.html
2016-09-26 00:45:13 +02:00

14 lines
323 B
HTML

@use ::Link;
@use rphotos::models::Photo;
@use templates::page_base;
@(title: &str, lpath: Vec<Link>, user: Option<String>, photos: Vec<Photo>)
@:page_base(title, lpath, user, {
<div class="group">
@for p in photos {
<p class="item"><a href="/details/@p.id"><img src="/img/@p.id/s"></a></p>
}
</div>
})