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

10 lines
281 B
HTML

@use rphotos::models::{Photo, Place};
@use templates::{page_base, img_link};
@(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 {@:img_link(p)}
</div>
})