1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00
Files
tabler/pages/maps.html
2020-02-01 21:56:24 +01:00

19 lines
324 B
HTML

---
title: Maps
page-header: Maps
---
<div class="row">
{% for map in site.data.maps %}
<div class="col-lg-6">
<div class="card">
<div class="card-body">
{% assign id = map[0] %}
{% include ui/map.html map-id=id %}
</div>
</div>
</div>
{% endfor %}
</div>