album/templates/person.rs.html

11 lines
295 B
HTML
Raw Normal View History

@use nickel::Request;
2016-09-23 23:03:04 +03:00
@use rphotos::models::{Photo, Person};
2017-02-01 18:27:09 +04:00
@use templates::{page_base, img_link};
2016-09-23 23:03:04 +03:00
@(req: &Request, photos: &[Photo], person: Person)
@:page_base(req, &format!("Photos with {}", person.person_name), &[], {
2016-09-26 01:45:13 +03:00
<div class="group">
2017-02-01 18:27:09 +04:00
@for p in photos {@:img_link(p)}
2016-09-26 01:45:13 +03:00
</div>
})