summaryrefslogtreecommitdiffstats
path: root/templates/entrance.kml
blob: 77bb01409eda2e40be7b2ee7f5ccb0f5b654480c (plain)
1
2
3
4
5
6
7
8
9
10
    {% if entrance.latlong %}
		<Placemark>
			<name>{{ entrance.slug }}</name>
			<description><![CDATA[{{ html }}]]></description>
			<styleUrl>#{{ size }}_cave</styleUrl>
			<Point>
				<coordinates>{{ entrance.latlong.1 }},{{ entrance.latlong.0 }},0</coordinates>
			</Point>
		</Placemark>
    {% endif %}