templates/modules/ads/ads.twig line 1

Open in your IDE?
  1. {% set fullheight = fullheight ?: false %}
  2. {% set small = small ?: false %}
  3. {% set home = home ?: false %}
  4. {% if zone %}
  5. <div class="ad {{fullheight ? "ad_fullHeight"}} {{ home ?: "interne"}} {{small ? "ad_small"}} {{ fixed_height }}">
  6.     <ins data-revive-zoneid="{{zone}}" data-revive-id="5830c0cac557d7c703aefe5a13bae980"></ins>    
  7. </div>
  8. {% else %}
  9.     {% set img_src = img_src ?: false %}
  10.     {% set link = link ?: false %}
  11.     <div class="ad {{fullheight ? "ad_fullHeight"}} {{small ? "ad_small"}} {{ fixed_height }}"
  12.         style="background-image: url('{{ img_src }}')">
  13.         <a href="{{ link }}" class="linkOnDiv"></a>
  14.     </div>
  15. {% endif %}