templates/website/includes/fast-timer.html.twig line 1

Open in your IDE?
  1. {% from 'utils.html.twig' import ico %}
  2. {% if isOnSale and not userHasProduct(product) %}
  3.     <div class="timer-content" 
  4.         data-storagefastimer="{{ actualDomain }}_{{ productOffer.id }}_{{ session ? session.user.id }}"
  5.         data-time-default="{{ productPage.getShortageTimeNumber(true) }}"
  6.         data-show="{{ productPage.showShortageControlTime ? '1':'0' }}">
  7.         <div class="progress">
  8.             <div class="my-progress-bar"></div>
  9.         </div>
  10.         <div class="timer">
  11.             <div class="content-fastimer">
  12.                 <div class="countdown-fastimer"></div>
  13.                 <div class="clock-fastimer">
  14.                     {{ ico('clock-fast-timer') }}
  15.                 </div>
  16.             </div>
  17.             <div class="message-fastimer">
  18.                 <span>{{ getLanguage('message_fastimer', 'util') }}</span>
  19.             </div>
  20.         </div>
  21.     </div>
  22. {% endif %}