album/templates/person.rs.html

12 lines
344 B
HTML
Raw Normal View History

2016-09-23 23:03:04 +03:00
@use rphotos::models::{Photo, Person};
2016-09-26 01:45:13 +03:00
@use templates::page_base;
2016-09-23 23:03:04 +03:00
@(user: Option<String>, photos: Vec<Photo>, person: Person)
2016-09-26 01:45:13 +03:00
@:page_base(&format!("Photos with {}", person.person_name), vec![], user, {
<div class="group">
2016-09-23 23:03:04 +03:00
@for p in photos {
<p class="item"><a href="/details/@p.id"><img src="/img/@p.id/s"></a></p>
}
2016-09-26 01:45:13 +03:00
</div>
})