-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpresentations.kml
More file actions
33 lines (32 loc) · 1.21 KB
/
presentations.kml
File metadata and controls
33 lines (32 loc) · 1.21 KB
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
---
title: Presentations KML
---
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
{% for chunk in site.data.resume.presentations %}
{% if chunk.geo %}
<Placemark>
<name>{{ chunk.title }} - {{ chunk.geo.properties.city }}</name>
<description>This talk was delivered on {{ chunk.date | date: "%B %-d, %Y"}} at {{ chunk.geo.properties.venue }} in {{ chunk.geo.properties.city }}.</description>
<Point>
<coordinates>{{chunk.geo.geometry.coordinates | join: ',' }}</coordinates>
</Point>
</Placemark>
{% if chunk.repeats %}
{% for rep in chunk.repeats %}
{% if rep.geo %}
<Placemark>
<name>{{ chunk.title }} - {{ rep.geo.properties.city }}</name>
<description>This talk was delivered on {{ rep.date | date: "%B %-d, %Y"}} at {{ rep.geo.properties.venue }} in {{ rep.geo.properties.city }}.</description>
<Point>
<coordinates>{{rep.geo.geometry.coordinates | join: ',' }}</coordinates>
</Point>
</Placemark>
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
</Document>
</kml>