modules/QSL/Make/templates/web/customer/modules/QSL/Make/product_fitment_label/body.twig line 1

Open in your IDE?
  1. {##
  2.  # Product fitment info
  3.  #}
  4. {% apply spaceless %}
  5. <div class="product-fitment-grid">
  6.   <div class="product-fitment-label {{ this.getProductFitmentClass() }}">
  7.     <span class="product-fitment--label">{{ this.getProductFitmentLabel() }}</span>
  8.   </div>
  9.     {% if this.getProductFitmentNote() %}
  10.       <div
  11.         class="fitment-note-label"
  12.         data-toggle="popover"
  13.         data-trigger="manual"
  14.         data-placement="bottom auto"
  15.         data-content="{{ this.getProductFitmentNote() }}"
  16.         data-html="true"
  17.         data-delay="0"
  18.         data-keep-on-hover="1"
  19.       >
  20.         {{ widget('XLite\\View\\Icon', icon=this.getFitmentNoteIcon(), class='product-fitment__fitment-note-label-icon') }}
  21.         {{ t('Note') }}
  22.       </div>
  23.     {% endif %}
  24. </div>
  25. {% endapply %}