album/templates/index.rs.html

13 lines
356 B
HTML
Raw Normal View History

2018-02-07 23:56:23 +04:00
@use models::Coord;
@use nickel::Request;
2018-03-03 17:39:33 +04:00
@use server::{Link, PhotoLink};
2018-02-07 23:56:23 +04:00
@use templates::{data_positions, page_base, photo_link};
2016-09-23 17:40:54 +03:00
2018-07-19 23:17:00 +04:00
@(req: &Request, title: &str, lpath: &[Link], photos: &[PhotoLink], coords: &[(Coord, i32)])
2016-09-23 17:40:54 +03:00
@:page_base(req, title, lpath, {
2018-02-07 23:56:23 +04:00
<div class="group"@:data_positions(coords)>
@for p in photos {@:photo_link(p)}
2016-09-26 01:45:13 +03:00
</div>
})