mirror of
https://github.com/tabler/tabler.git
synced 2025-12-26 11:16:12 +04:00
13 lines
304 B
HTML
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>
|