templates/bundles/ToolboxBundle/toolbox/tailwind/image/view.html.twig line 1

Open in your IDE?
  1. {% set class = 'img-fluid' %}
  2. {% set useLightBox = pimcore_checkbox('use_light_box').isChecked() and editmode == false %}
  3. {% set hasLink = pimcore_link('image_link').isEmpty() == false and editmode == false %}
  4. <div {{ useLightBox ? 'class="light-box"' : '' }}>
  5.     {% if useLightBox == true %}
  6.         {% include toolbox_area_path(areaId, areaTemplateDirectory, 'partial/lightbox') with { 'class' : class } %}
  7.     {% elseif hasLink == true %}
  8.         {% include toolbox_area_path(areaId, areaTemplateDirectory, 'partial/single_link') with { 'class' : class } %}
  9.     {% else %}
  10.         {% include toolbox_area_path(areaId, areaTemplateDirectory, 'partial/single') with { 'class' : class } %}
  11.     {% endif %}
  12.     {% if pimcore_checkbox('show_caption').isChecked() == true %}
  13.         <span class="caption">{{ pimcore_image('ci').text }}</span>
  14.     {% endif %}
  15. </div>