cards.html 1.7 KB
Newer Older
C
chomik 已提交
1
---
C
codecalm 已提交
2
title: Cards
C
chomik 已提交
3 4 5 6
page-title: Cards
---

<div class="row">
C
chomik 已提交
7
   <div class="col-md-6 col-xl-4">
C
codecalm 已提交
8
      {% include_cached cards/card.html body="This is some text within a card body." %}
C
codecalm 已提交
9
      {% include_cached cards/card.html img-bottom=true title="Card with bottom image" %}
C
codecalm 已提交
10 11 12 13
      {% include_cached cards/card.html active=true body="This is a card with active state." %}
      {% include_cached cards/card.html inactive=true body="This is some text inactive state." %}

      {% include_cached cards/card.html footer-elements="more,>switch"  %}
C
chomik 已提交
14
   </div>
C
codecalm 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
   <div class="col-md-6 col-xl-8">
      {% include_cached cards/card-image.html title="Card with left side image" %}
      {% include_cached cards/card-image.html title="Card with right side image" right=true %}
      {% include_cached cards/card-group.html %}

      <div class="row">
         <div class="col-xl-6">
            {% include_cached cards/card.html img-top=true title="Card with top image" %}
            {% include_cached cards/card.html link=true title="Card with button link" %}
            {% include_cached cards/card.html status-top="danger" title="Card with top status" %}
            {% include_cached cards/card.html status-bottom="success" title="Card with bottom status" %}
         </div>
         <div class="col-xl-6">
            {% include_cached cards/card.html title="Card title" subtitle="Card subtitle" %}
            {% include_cached cards/card.html header=true  %}
            {% include_cached cards/card.html title="Card with footer" footer=true %}
            {% include_cached cards/card.html title="Card with footer button" footer-button=true %}
            {% include_cached cards/card.html title="Card with footer buttons" footer-buttons=true %}
         </div>
      </div>
C
chomik 已提交
35
   </div>
C
codecalm 已提交
36

C
chomik 已提交
37
</div>