convert fourteen eyes panels

This commit is contained in:
Samuel Shifterovich
2018-10-25 18:55:58 +02:00
parent 4b5c1f35ea
commit b079344228
2 changed files with 46 additions and 42 deletions

14
_includes/panel.html Normal file
View File

@ -0,0 +1,14 @@
<div class="col-xl-4 col-lg-6 col-md-12 mb-2">
<div class="card card-{{include.color}}">
{% if include.color == "warning" %}
<div class="card-header text-dark bg-{{include.color}}">
{% else %}
<div class="card-header text-white bg-{{include.color}}">
{% endif %}
<h3 class="h5">{{include.title}}</h3>
</div>
<div class="card-body">
{{include.body}}
</div>
</div>
</div>