2017-08-03 21:59:21 +04:00
|
|
|
@use nickel::Request;
|
2017-09-02 02:05:44 +04:00
|
|
|
@use models::{Photo, Tag};
|
2017-02-01 18:27:09 +04:00
|
|
|
@use templates::{page_base, img_link};
|
2016-09-23 23:03:04 +03:00
|
|
|
|
2017-09-27 02:19:03 +04:00
|
|
|
@(req: &Request, photos: &[Photo], tag: &Tag)
|
2017-02-05 15:08:38 +04:00
|
|
|
|
2017-08-03 21:59:21 +04:00
|
|
|
@:page_base(req, &format!("Photos tagged {}", tag.tag_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>
|
|
|
|
})
|