File diff 48cba465ea30 → 8e6ea8ad71bf
www/conservancy/apps/worldmap/templates/kml
Show inline comments
 
new file 100644
 
<?xml version="1.0" encoding="UTF-8"?>
 
<kml xmlns="http://earth.google.com/kml/2.1">
 
  <Document>
 
    <Placemark>
 
      <name>{{ location.name }}</name>
 
      <description>
 
        <![CDATA[
 
          {{ location.html_description }}
 
        ]]>
 
      </description>
 
      <Point>
 
        <coordinates>{{ location.latitude }},{{ location.longitude }}</coordinates>
 
      </Point>
 
    </Placemark>
 
  </Document>
 
</kml>