1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-25 03:08:14 +04:00
Files
tabler/pages/maps.html
2019-10-28 20:53:15 +01:00

19 lines
323 B
HTML

---
title: Maps
page-title: 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>