mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
16 lines
250 B
HTML
16 lines
250 B
HTML
---
|
|
title: Maps
|
|
page-title: Maps
|
|
---
|
|
|
|
|
|
{% for map in site.data.maps %}
|
|
{% assign title = map[0] %}
|
|
{% assign key = 'map-' | append: title %}
|
|
|
|
<div id="{{ key }}" style="height: 600px;"></div>
|
|
|
|
{% include js/maps.html id=key data=map %}
|
|
|
|
{% endfor %}
|