1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00
Files
tabler/pages/_includes/cards/map.html
2019-10-28 20:53:15 +01:00

13 lines
304 B
HTML

{% assign map = include.map | default: "world" %}
<div class="card">
{% if include.title %}
<div class="card-header">
<h3 class="card-title">{{ include.title }}</h3>
</div>
{% endif %}
<div class="card-body">
{% include ui/map.html map-id=map color="blue" %}
</div>
</div>