templates/includes/macros.html.twig line 10

Open in your IDE?
  1. {% macro image_link(image, editmode = false, linkThumbnail = 'galleryLightbox') %}
  2.     {# @var image \Pimcore\Model\Document\Tag\Image #}
  3.     {% set hasLink = not editmode and linkThumbnail is not empty %}
  4.     {% if hasLink %}
  5.         <a href="{{ image.getThumbnail(linkThumbnail) }}" class="thumbnail">
  6.     {% endif %}
  7.     {{ image|raw }}
  8.     {% if hasLink %}
  9.         </a>
  10.     {% endif %}
  11. {% endmacro %}