album/templates/index.rs.html

13 lines
264 B
HTML
Raw Normal View History

2016-09-26 01:45:13 +03:00
@use ::Link;
@use nickel::Request;
@use models::Photo;
2017-02-01 18:27:09 +04:00
@use templates::{page_base, img_link};
2016-09-23 17:40:54 +03:00
@(req: &Request, title: &str, lpath: &[Link], photos: &[Photo])
2016-09-23 17:40:54 +03:00
@:page_base(req, title, lpath, {
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>
})