ade508eb8d
Just as for people, places, and tag views.
13 lines
276 B
HTML
13 lines
276 B
HTML
@use ::Link;
|
|
@use nickel::Request;
|
|
@use server::PhotoLink;
|
|
@use templates::{page_base, photo_link};
|
|
|
|
@(req: &Request, title: &str, lpath: &[Link], photos: &[PhotoLink])
|
|
|
|
@:page_base(req, title, lpath, {
|
|
<div class="group">
|
|
@for p in photos {@:photo_link(p)}
|
|
</div>
|
|
})
|