mirror of
https://github.com/tabler/tabler.git
synced 2026-07-29 14:34:37 +04:00
11 lines
347 B
HTML
11 lines
347 B
HTML
{% assign data = site.data.charts[include.chart-id] %}
|
|
{% assign height = include.height | default: 10 %}
|
|
<div class="card">
|
|
<div class="card-body">
|
|
{% if include.title %}
|
|
<h3 class="card-title">{{ include.title }}</h3>
|
|
{% endif %}
|
|
{% include ui/chart.html height=height chart-id=include.chart-id %}
|
|
</div>
|
|
</div>
|