<section class="section section__landing"
{% if contents['landing']['backgroundType'] is defined %}
style="
{% if contents['landing']['backgroundType'] == "color" %}
background-color: #{{contents['landing']['backgroundColor']}};
{% elseif contents['landing']['backgroundType'] == "image" %}
background-image: url('/uploads/images/{{contents['landing']['backgroundImage']}}');
background-size: cover;
background-position: center;
{% endif %}
"
{% endif %}
>
<div class="container">
<div class="row">
<div class="offset-lg-1 col-lg-5">
<h1 class="section__title section__title--white section__title--big">{% if contents['landing']['title'] is defined %}{{contents['landing']['title']}}{% endif %}</h1>
<div class="section__content section__content--white">
{% if contents['landing']['content'] is defined %}{{contents['landing']['content']|raw}}{% endif %}
</div>
<div class="section__buttons">
{% if contents['landing']['buttons'] is defined %}
{% for button in contents['landing']['buttons'] %}
<a href="{{button['buttonUrl']}}" {% if button['blank'] %}target="_blank"{% endif %}>
<button class="btn btn-outline">
{{button['buttonLabel']}}
</button>
</a>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</section>