mirror of
https://github.com/jlengrand/irma-website.git
synced 2026-03-10 08:21:20 +00:00
17 lines
548 B
HTML
17 lines
548 B
HTML
{% if section.media_alignment and section.media_alignment == "Left" %}
|
|
{% include block-feature-2.html %}
|
|
{% else %}
|
|
<section class="block block-feature-1">
|
|
<div class="container">
|
|
<div class="columns">
|
|
<div class="column text">
|
|
<h2><span class="light">{{ section.headline }}</span></h2>
|
|
<p>{{ section.content }}</p>
|
|
</div>
|
|
<div class="column media">
|
|
<img src="{{ section.media.image | relative_url }}" alt="{{ section.media.alt_text }}">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endif %} |