templates/theme/default/blocks/quotation.html.twig line 1

Open in your IDE?
  1. <section class="section section__quote {% if contents['quotation']['active'] is not defined or contents['quotation']['active'] != 'on' %}d-none{% endif %}">
  2.     <div class="container">
  3.         <div class="row">
  4.             <div class="col-lg-6">
  5.                 {% if contents['quotation']['image'] is defined %}
  6.                     <img src="/uploads/files/{{contents['quotation']['image']}}" alt="" class="section__image">
  7.                 {% endif %}
  8.             </div>
  9.             <div class="offset-lg-1 col-lg-5 v-align-center">
  10.                 <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>
  11.                 <div class="section__content">
  12.                     {% if contents['quotation']['description'] is defined %}{{contents['quotation']['description']|raw}}{% endif %}
  13.                 </div>
  14.                 {% if contents['quotation']['quotation'] is defined %}
  15.                     <div class="section__quotation">
  16.                         <blockquote>
  17.                             {{contents['quotation']['quotation']}}
  18.                         </blockquote>
  19.                     </div>
  20.                 {% endif %}
  21.             </div>
  22.         </div>
  23.     </div>
  24. </section>