templates/home/blocks/text_right_img_left.html.twig line 1

Open in your IDE?
  1. <div class="container block text-left-img-right mb-5 mt-5">
  2.     <div class="row">
  3.         <div class="col-md-6">
  4.             {% if data.illustration is defined and data.illustration is not empty %}
  5.                 <img src="{{ asset('uploads/' ~ data.illustration.0) }}" title="{{ data.title }}">
  6.             {% endif %}
  7.         </div>
  8.         <div class="col-md-6">
  9.             <h2 class="text-center">Block {{ data.title }}</h2>
  10.             {% if data.content is not empty %}
  11.                 {{ data.content.0|raw }}
  12.             {% endif %}
  13.         </div>
  14.     </div>
  15. </div>