blob: 484899cd97b2122cc9d7007444c0669f9ded3e16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
extends layout.pug
block content
#sidebar
h1#details-header Details
#report-container
#report
strong Gender
span#report-gender
strong Age Range
span#report-age-range
strong Race
span#report-race
strong Other Attributes
span#report-other
strong Distinctive Features
span#report-distinctive
#close-btn-container
button#close-btn Close
#map
script(type='text/javascript').
var map = L.map('map').setView([#{lat},#{lng}], 13);
var points = !{JSON.stringify(points)};
console.log(points);
script(src='/javascripts/map.js')
|