@use rphotos::models::{Photo, Place}; @use templates::{page_base, img_link}; @(user: Option, photos: &[Photo], place: Place) @:page_base(&format!("Photos from {}", place.place_name), &[], &user, {
@for p in photos {@:img_link(p)}
})