forked from CloudCannon/jekyll-learn-blog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocations.html
37 lines (32 loc) · 1.04 KB
/
locations.html
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
27
28
29
30
31
32
33
34
35
36
37
---
layout: default
title: Endangered bird locations
---
<h1 class="">Endangered bird locations</h1>
<div id="map-canvas"></div>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script src="/js/map.js"></script>
<script>
let markers = {{ site.data.locations | jsonify }};
google.maps.event.addDomListener(window, 'load', initializeMap);
</script>
<div class="contact">
<h2 class="contact__heading">Report a sighting</h2>
<p>If you think you've spotted an endangered species, please contact one of our friendly staff to let them know.</p>
</div>
<div class="staff">
{% for person in site.data.staff %}
<div class="staff-member">
<img class="staff-member__image" src="{{ person.image }}">
<div>
<p class="staff-member__name">{{ person.name }}</p>
<p>Contact options: </p>
<ul class="staff-member__contacts">
<li><a class="option" href="#">Email</a></li>
<li><a class="option" href="#">Facebook</a></li>
<li><a class="option" href="#">Twitter</a></li>
</ul>
</div>
</div>
{% endfor %}
</div>