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

12 lines
339 B
HTML

@use rphotos::models::{Photo, Place};
@use templates::page_base;
@(user: Option<String>, photos: Vec<Photo>, place: Place)
@:page_base(&format!("Photos from {}", place.place_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>
})