templates/includes/colonnes_gauche.html.twig line 12

Open in your IDE?
  1. {% apply spaceless %}
  2. {# {% cache "colonnes_gauches" ttl(86400) %} #}
  3. {#  86400s = 1jour   #}
  4. <!--COLONNE GAUCHE -->
  5. <div class="d-none d-lg-block col-md-4 col-lg-3 text-center col-gauche">
  6.     
  7.     {% if "depot_annonce" not in twig_vars.currentRoute%}
  8.     <!--BLOC DEPOSEZ ANNONCE -->
  9.     {% include 'includes/bloc/deposez_annonce.html.twig' %}
  10.     <!--FIN BLOC DEPOSEZ ANNONCE -->
  11.    {% endif %}
  12.   
  13.     <!--BLOC DIFFUSEZ CV -->
  14.     {% include 'includes/bloc/diffusez_cv.html.twig' %}
  15.     <!--FIN BLOC DIFFUSEZ CV -->
  16.     {% if "depot_annonce" not in twig_vars.currentRoute%}
  17.         <!--BLOC PUB SKYSCRAPER -->
  18.         {% include 'includes/bloc/pub_skyscraper.html.twig' %}
  19.         <!--FIN BLOC PUB SKYSCRAPER -->
  20.     {% endif %}
  21. </div>
  22. <!--FIN COLONNE GAUCHE -->
  23. {# {% endcache %} #}
  24. {% endapply %}