mirror of
https://github.com/tabler/tabler.git
synced 2026-08-01 16:04:37 +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>
|