templates/app/Section/templates/Representation/_representation.html.twig line 1

Open in your IDE?
  1. <div class="col-md-4 d-flex justify-content-center mt-2r">
  2.     {% if link is empty %}
  3.         <img class="img-fluid" src="{{ imageSource }}"/>
  4.     {% else %}
  5.         <a href="{{ link }}" target="_blank">
  6.             <img class="img-fluid" src="{{ imageSource }}"/>
  7.         </a>
  8.     {% endif %}
  9. </div>