album/templates/data_positions.rs.html

6 lines
180 B
HTML
Raw Normal View History

2018-11-01 02:08:29 +04:00
@use crate::models::Coord;
2018-02-07 23:56:23 +04:00
2018-07-19 23:17:00 +04:00
@(coords: &[(Coord, i32)])
@if let Some(((c, p), rest)) = coords.split_first()
{ data-positions="[[@c.x,@c.y,@p]@for (c,p) in rest {,[@c.x,@c.y,@p]}]"}