Website/template/map.twig

13 lines
244 B
Twig
Raw Permalink Normal View History

2023-09-15 15:53:33 +00:00
{% include 'includes/head.twig' with {'pageTitle': 'Map'} %}
2023-09-15 15:48:05 +00:00
2023-09-18 16:10:55 +00:00
<div id="map"></div>
2023-09-15 15:48:05 +00:00
2024-01-13 22:12:46 +00:00
<script>
const center = "{{ center }}";
const markers = {{ markers|raw }};
</script>
2023-11-18 12:29:03 +00:00
<script src="js/map.js"></script>
2023-09-15 15:48:05 +00:00
{% include 'includes/foot.twig' %}