mirror of
https://github.com/tabler/tabler.git
synced 2025-12-24 10:48:14 +04:00
26 lines
576 B
HTML
26 lines
576 B
HTML
---
|
|
title: Charts
|
|
page-title: Charts
|
|
menu: charts
|
|
---
|
|
|
|
<div class="row">
|
|
{% for chart in site.data.charts %}
|
|
{% if chart[1].demo %}
|
|
{% assign chart-id = chart[0] %}
|
|
<div class="col-lg-6 col-xl-4">
|
|
<div class="card">
|
|
{% if chart[1].name %}
|
|
<div class="card-header">
|
|
<h3 class="card-title">{{ chart[1].name }}</h3>
|
|
</div>
|
|
{% endif %}
|
|
<div class="card-body">
|
|
{% include ui/chart.html chart-id=chart-id height=15 %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|