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

12 lines
331 B
HTML

@use rphotos::models::{Photo, Tag};
@use templates::page_base;
@(user: Option<String>, photos: Vec<Photo>, tag: Tag)
@:page_base(&format!("Photos tagged {}", tag.tag_name), vec![], 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>
})