Convert KDL

This commit is contained in:
Samuel Shifterovich
2018-12-23 20:28:01 +01:00
parent 31feb82c42
commit 7ef61a1757
10 changed files with 123 additions and 99 deletions

View File

@ -5,10 +5,18 @@
{% else %}
<div class="card-header text-white bg-{{include.color}}">
{% endif %}
<h3 class="h5">{{include.title}}</h3>
<h3 class="h5">{{ include.title }}</h3>
</div>
{% if include.list %}
<div class="card-body">
{{include.body}}
<ol class="card-ol">
{{ include.list | markdownify | replace:"&lt;":"<" | replace:"&gt;":">" }}
</ol>
</div>
{% else %}
<div class="card-body">
{{ include.body }}
</div>
{% endif %}
</div>
</div>