templates/partials/gift_detail/gift_popup.html.twig line 1

Open in your IDE?
  1. <div id="popup-extras" class="promo-popup js-container--popup">
  2.     <h3 class="promo-popup--title">{{ 'app.gift_cart.extras_description' | trans }}</h3>
  3.     <div class="promo-popup--close  js-closer-popup">{% include 'partials/global/svg/close.svg.twig' %}</div>
  4.     <div class="promo-popup--content">
  5.         {% if extraTypesDescription is defined %}
  6.             {% for extra_type in extraTypesDescription %}
  7.                 <h4>{{ extra_type.title }}</h4>
  8.                 <p>{{ extra_type.description }}</p>
  9.             {% endfor %}
  10.         {% endif %}
  11.     </div>
  12. </div>
  13. <div id="popup-legal" class="promo-popup js-container--popup">
  14.     <h3 class="promo-popup--title">{{ 'app.gift_cart.conditions' | trans }}</h3>
  15.     <div class="promo-popup--close  js-closer-popup">{% include 'partials/global/svg/close.svg.twig' %}</div>
  16.     <div class="promo-popup--content">
  17.         {% if gift is defined %}
  18.             {{ gift.giftConditions | raw }}
  19.         {% endif %}
  20.     </div>
  21. </div>