templates/areas/content-hotspot/view.html.twig line 1

Open in your IDE?
  1. <section class="hotspot-area container-narrow container mt-5 js-fade-in {{ not pimcore_input('anchorTitle').empty ? 'js-anchor-nav__item' : '' }}" {% if not pimcore_input('anchorTitle').empty %}data-anchor-nav-title="{{ pimcore_input('anchorTitle').frontend }}"{% endif %} >
  2.     {% embed 'Includes/editmode-settings.html.twig' %}
  3.         {% block additionalInfo %}
  4.         {% endblock %}
  5.     {% endembed %}
  6.     {{ include('Includes/title-block.html.twig', {
  7.         title: title|default(''),
  8.         subtitle: subtitle|default(''),
  9.         isCentered: true
  10.     }) }}
  11.     <div class="position-relative js-hotspot-container">
  12.         {{ pimcore_image('hotspot-area', {
  13.             thumbnail: 'hotspot-area',
  14.             imgAttributes: {
  15.                 class: 'js-lazy-img img-fluid img-dropshadow w-100'
  16.             },
  17.             lowQualityPlaceholder: true
  18.         }) }}
  19.         {% for marker in pimcore_image('hotspot-area').marker  %}
  20.             {% if marker['data'] and marker['data'][0] %}
  21.                 {% set element = marker['data'][0].value  %}
  22.                 {% if marker.left is defined and marker.left and marker.top is defined and marker.top and marker.name is defined and element %}
  23.                     {{ include('Includes/hotspot.html.twig', getHotspotData(marker.left, marker['top'], element, false, marker['name'])) }}
  24.                 {% endif %}
  25.             {% endif %}
  26.         {% endfor %}
  27.     </div>
  28. </section>
  29. {% if editmode %}
  30.     <br><br>
  31. {% endif %}