templates/_widgets/aside-bonus-block.html.twig line 1

Open in your IDE?
  1. {% if bonusData.bonus is defined or bonusData.image is defined %}
  2.     <div class="item sidebar-item bonus-item {% if bonusData.image is not defined %}bonus-item-random-banner bonus-item-random-banner-0{% endif %}">
  3.         {% if bonusData.image is not defined %}
  4.             <a href="{{ path('app_booking_mainbooking_index') }}" class="bonus-banner-link d-block mb-xl-2">
  5.                 <img src="{{ asset('build/images/bonus-0.gif') }}" class="img-fluid" alt="Bonus Grafik"/>
  6.             </a>
  7.         {% endif %}
  8.         {% if bonusData.image is defined %}
  9.             <div class="row no-gutters">
  10.                 <div class="col-12">
  11.                     <div class="text-center">
  12.                         <a href="{{ path('app_booking_mainbooking_index') }}">
  13.                             <img class="img-fluid" width="100%" src="{{ bonusData.image.url }}" alt="Aktueller Bonus noch bis {{ bonusData.image.end_at|date('d.m.Y H:i') }} Uhr">
  14.                             <!--<img class="img-fluid" width="100%" src="https://www.frivol.com/froalaeditor/c026848436cfcc0014dba262a0e57410d3fe617b.gif?20210113-2" alt="Aktueller Bonus noch bis {{ bonusData.image.end_at|date('d.m.Y H:i') }} Uhr">-->
  15.                         </a>
  16.                     </div>
  17.                 </div>
  18.             </div>
  19.         {% endif %}
  20.         {% if bonusData.bonus is defined %}
  21.             <div class="d-none d-md-flex justify-content-center">
  22.                 <div class="tadaa float-left text-center text-white p-1 ml-2 mt-2 d-none d-xl-inline-block">
  23.                     <span>Nur<br/> noch</span>
  24.                 </div>
  25.                 <div id="clock-wrapper" class="frivol-clock-wrapper d-inline-block flex-xl-grow-1 ml-xl-3 mr-xl-1" data-frivol-bonus-end="{{ bonusData.bonus.bonus_end|date('U') - 'now'|date('U') }}">
  26.                 </div>
  27.             </div>
  28.             <a href="{{ path('app_booking_mainbooking_index') }}" data-remove-bonusend="1" id="sidebarBonusButton" class="btn btn-success pulse-green d-block mb-0 mt-lg-3">
  29.                 <i class="fa-solid fa-chevron-right pulse delay-1"></i>
  30.                 <i class="fa-solid fa-chevron-right pulse delay-2"></i>
  31.                 <span>{{ bonusData.bonus.percent|number_format(0) }}% Bonus <span class="d-none d-lg-inline"> kassieren</span></span>
  32.                 <i class="fa-solid fa-chevron-left pulse delay-2"></i>
  33.                 <i class="fa-solid fa-chevron-left pulse delay-1"></i>
  34.             </a>
  35.         {% endif %}
  36.     </div>
  37. {% endif %}