Restructure the site to allow for i18n

This commit is contained in:
Samuel Shifterovich
2018-11-29 16:46:11 +01:00
parent a58b5811aa
commit 7262d7b1f2
15 changed files with 313 additions and 272 deletions

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>