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

7
<div class="row">
C
codecalm 已提交
8 9 10 11 12 13 14 15
   <div class="col-12">
      <div class="card">
         <div class="card-body">
            {% include ui/chart.html chart-id="tasks-overview" height=20 %}
         </div>
      </div>
   </div>

C
codecalm 已提交
16
   {% for chart in site.data.charts %}
C
codecalm 已提交
17 18
   {% if chart[1].demo %}
   {% assign chart-id = chart[0] %}
C
codecalm 已提交
19
   <div class="col-lg-6 col-xl-4">
C
codecalm 已提交
20 21 22 23 24 25 26 27 28 29
      <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 已提交
30 31 32
   </div>
   {% endif %}
   {% endfor %}
C
codecalm 已提交
33 34


C
codecalm 已提交
35
</div>