1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-26 04:54:40 +04:00
Files
tabler/pages/charts.html
T
2020-02-01 21:56:24 +01:00

36 lines
777 B
HTML

---
title: Charts
page-header: Charts
menu: charts
---
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
{% include ui/chart.html chart-id="tasks-overview" height=20 %}
</div>
</div>
</div>
{% 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>