mirror of
https://github.com/tabler/tabler.git
synced 2026-07-29 14:34:37 +04:00
17 lines
307 B
HTML
17 lines
307 B
HTML
---
|
|
title: Charts
|
|
menu: charts
|
|
---
|
|
|
|
<div class="row">
|
|
{% for chart in site.data.charts %}
|
|
{% if chart[1].display %}
|
|
{% assign chart-name = chart[0] %}
|
|
<div class="col-lg-6 col-xl-4">
|
|
{% include cards/charts/card.html chart-id=chart-name %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
</div>
|