<section class="section section__quote {% if contents['quotation']['active'] is not defined or contents['quotation']['active'] != 'on' %}d-none{% endif %}">
<div class="container">
<div class="row">
<div class="col-lg-6">
{% if contents['quotation']['image'] is defined %}
<img src="/uploads/files/{{contents['quotation']['image']}}" alt="" class="section__image">
{% endif %}
</div>
<div class="offset-lg-1 col-lg-5 v-align-center">
<h3 class="section__title"><strong>{% if contents['quotation']['name'] is defined %}{{contents['quotation']['name']}}{% endif %}</strong> {% if contents['quotation']['job'] is defined %}– {{contents['quotation']['job']}}{% endif %}</h3>
<div class="section__content">
{% if contents['quotation']['description'] is defined %}{{contents['quotation']['description']|raw}}{% endif %}
</div>
{% if contents['quotation']['quotation'] is defined %}
<div class="section__quotation">
<blockquote>
{{contents['quotation']['quotation']}}
</blockquote>
</div>
{% endif %}
</div>
</div>
</div>
</section>