templates/includes/colonnes_gauche_annonces.html.twig line 1

Open in your IDE?
  1. {% apply spaceless %}
  2. {# {% cache "colonnes_gauches_annonces" 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.     <!--BLOC DEPOSEZ ANNONCE -->
  7.     {% include 'includes/bloc/deposez_annonce.html.twig' %}
  8.     <!--FIN BLOC DEPOSEZ ANNONCE -->
  9.     <!--BLOC DIFFUSEZ CV -->
  10.     {% include 'includes/bloc/diffusez_cv.html.twig' %}
  11.     <!--FIN BLOC DIFFUSEZ CV -->
  12.     <!--BLOC SATISFAIT OU RECREDITE -->
  13.     {% include 'includes/bloc/satisfait_ou_recredite.html.twig' %}
  14.     <!--FIN BLOC SATISFAIT OU RECREDITE -->
  15.     <!--BLOC VOUS ETES UN REPRENEUR PHYSIQUE -->
  16.     {% include 'includes/bloc/vous_etes_un_repreneur.html.twig' %}
  17.     <!--FIN BLOC VOUS ETES UN REPRENEUR PHYSIQUE -->
  18.     <!--BLOC FUSACQ VOUS AIDE-->
  19.     <div class="col-12 mb-5 bkg_blanc">
  20.         <div class="row">
  21.             <div class="col-12 bkg_bleu blanc text-center py-2 fs11">
  22.                 {{ translate("fusacq vous aide à" ,lang,"","M") | raw }}
  23.             </div>
  24.             <div class="col-3 float-left p-2 border_bottom">
  25.                 <i class="fa fa-user fa-2x" aria-hidden="true"  style="color: #204B76" ></i>
  26.             </div>
  27.             <div class="col-9 text-left pt-3 no-padding-x border_bottom">
  28.                 <a href="{{ path("annuaires_experts_index",{'codePays':codePaysWithUnderScore }) }}"  target="_blank" style="text-decoration: underline;" >
  29.                     {{ translate("trouver un expert" ,lang,"","M") | raw }}
  30.                 </a>
  31.             </div>
  32.             <div class="col-3 float-left p-2 border_bottom">
  33.                 <i class="fas fa-calculator fa-2x" aria-hidden="true" style="color: #204B76" ></i>
  34.             </div>
  35.             <div class="col-9 text-left pt-3  no-padding-x border_bottom">
  36.                 <a href="{{ path("simuler_votre_pret",{'codePays':codePaysWithUnderScore }) }}"  target="_blank" style="text-decoration: underline;" >
  37.                     {{ translate("simuler votre prêt" ,lang,"","M") | raw }}
  38.                 </a>
  39.             </div>
  40.             <div class="col-3 float-left p-2 border_bottom">
  41.                 <i class="fas fa-cogs fa-2x" aria-hidden="true"  style="color: #204B76"></i>
  42.             </div>
  43.             <div class="col-9 text-left pt-3 no-padding-x border_bottom">
  44.                 <a href="#"   target="_blank" style="text-decoration: underline;" >
  45.                     {{ translate("simuler votre reprise" ,lang,"","M") | raw }}
  46.                 </a>
  47.             </div>
  48.             <div class="col-3 float-left p-2 ">
  49.                 <i class="fa fa-euro-sign fa-2x" aria-hidden="true"  style="color: #204B76" ></i>
  50.             </div>
  51.             <div class="col-9 text-left pt-2 no-padding-x">
  52.                 <a href="{{ path("faire_une_demande_de_financement",{'codePays':codePaysWithUnderScore }) }}"  target="_blank" style="text-decoration: underline;" >
  53.                     {{ translate("faire une demande de financement" ,lang,"","M") | raw }}
  54.                 </a>
  55.             </div>
  56.         </div>
  57.     </div>
  58.     <!--FIN BLOC FUSACQ VOUS AIDE-->
  59. </div>
  60. <!--FIN COLONNE GAUCHE -->
  61. {# {% endcache %} #}
  62. {% endapply %}