album/templates/index.rs.html
2017-08-03 19:59:21 +02:00

13 lines
273 B
HTML

@use ::Link;
@use nickel::Request;
@use rphotos::models::Photo;
@use templates::{page_base, img_link};
@(req: &Request, title: &str, lpath: &[Link], photos: &[Photo])
@:page_base(req, title, lpath, {
<div class="group">
@for p in photos {@:img_link(p)}
</div>
})