33 lines
1.0 KiB
Twig
33 lines
1.0 KiB
Twig
<div class="modular-row features {{ page.header.class}}">
|
|
<div class="after-h1">
|
|
<svg viewBox="0 0 220 100" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- Simple rect element -->
|
|
<rect x="0" y="0" width="100" height="3" />
|
|
</div>
|
|
|
|
{{ content|raw }}
|
|
|
|
<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 %}
|
|
<h3>{{ feature.header }}</h3>
|
|
{% endif %}
|
|
{% if feature.text %}
|
|
<p>{{ feature.text }}</p>
|
|
{% endif %}
|
|
{% if feature.logo %}
|
|
<img src="{{ page.media[page.header.features.logo] }}" alt=“logo_programme” />
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|