charts.html 576 字节
Newer Older
C
codecalm 已提交
1 2
---
title: Charts
C
codecalm 已提交
3
page-title: Charts
C
chomik 已提交
4
menu: charts
C
codecalm 已提交
5 6
---

7
<div class="row">
C
codecalm 已提交
8
   {% for chart in site.data.charts %}
C
codecalm 已提交
9 10
   {% if chart[1].demo %}
   {% assign chart-id = chart[0] %}
C
codecalm 已提交
11
   <div class="col-lg-6 col-xl-4">
C
codecalm 已提交
12 13 14 15 16 17 18 19 20 21
      <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>
C
codecalm 已提交
22 23 24 25
   </div>
   {% endif %}
   {% endfor %}
</div>