templates/includes/bloc/pub_skyscraper.html.twig line 1

Open in your IDE?
  1.  {% apply spaceless %}
  2. {% set acceptPubCib = true %}
  3. {% if app.request.cookies.get('acceptPubCib') == "non" %}
  4.     {% set acceptPubCib = false %}
  5. {% endif %}
  6. <!-- PUB SKYSCRAPER -->
  7. <div class="my-2">
  8.     {% if acceptPubCib %}
  9.         <div id="div-gpt-ad-1515597594285-0" class="" style="border: 1px solid #dfdfdf; background: #dfdfdf;">
  10.         </div>
  11.         <a class="pub-horizontal d-none d-xl-inline-block" 
  12.            href="{{ path('publicite',{'codePays':codePaysWithUnderScore}) }}">Publicité
  13.         </a>
  14.         <script>
  15.             document.querySelector('a.pub-horizontal').style.visibility = 'hidden';
  16.             googletag.cmd.push(function () {
  17.                 googletag.display('div-gpt-ad-1515597594285-0');
  18.                 document.querySelector('a.pub-horizontal').style.visibility = 'visible';
  19.             });
  20.         </script>
  21.     {% endif %}
  22. </div> 
  23. <!--FIN PUB SKYSCRAPER -->
  24. {% endapply %}
  25.  
  26.