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

Open in your IDE?
  1. <div class="col-6 col-md-2">
  2.     <div class="d-flex flex-column">
  3.         {% if data.service_icon is defined and data.service_icon is not empty %}
  4.             <img src="{{ asset('uploads/' ~ data.service_icon.0) }}">
  5.         {% endif %}
  6.         <p class="mt-3 blue-dark">{{ data.title }}</p>
  7.     </div>
  8. </div>