mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
23 lines
690 B
Twig
23 lines
690 B
Twig
|
<div class="modular-row features {{ page.header.class}}">
|
||
|
{{ content }}
|
||
|
<div class="feature-items">
|
||
|
{% for feature in page.header.features %}
|
||
|
<div class="feature">
|
||
|
{% if feature.icon %}
|
||
|
<i class="fa fa-fw fa-{{ feature.icon }}"></i>
|
||
|
<div class="feature-content icon-offset">
|
||
|
{% else %}
|
||
|
<div class="feature-content">
|
||
|
{% endif %}
|
||
|
{% if feature.header %}
|
||
|
<h4>{{ feature.header }}</h4>
|
||
|
{% endif %}
|
||
|
{% if feature.text %}
|
||
|
<p>{{ feature.text }}</p>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</div>
|