templates/front/theme1/partials/footer/modeles/_footer2.html.twig line 1

Open in your IDE?
  1. <footer class="hrz-footer footer-default footer2">
  2.     
  3.     {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/elements/_banniere_pub_footer.html.twig')}}
  4. <div class="hrz-footer-top">
  5.                 <div class="container-1300">
  6.     <section itemscope="" class="top-footer">
  7.         
  8.             {% if logoPosition == 3 %}
  9.                 <div class="text-center logo-center">
  10.                     {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/elements/_logo_footer.html.twig')}} 
  11.                 </div>
  12.             {% endif %}
  13.             
  14.             <div class="items-top d-flex justify-content-center justify-content-xl-between flex-wrap flex-wrap text-md-left text-center align-items-top row">
  15.                 {% if logoPosition == 1 %}
  16.                     {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/elements/_logo_footer.html.twig')}} 
  17.                 {% endif %}
  18.                 <div class="row-info col-lg-9 col-12 justify-content-between">
  19.                     {% for contactItem in contacts %}
  20.                         {% set nbContact = loop.index %}
  21.                         {% if nbContact <= nbrContactsInput %}
  22.                             {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/elements/_coordonnees_contact.html.twig')}}
  23.                         {% endif %}
  24.                     {% endfor %}
  25.                 </div>
  26.                 
  27.                 {% if contacts and texteFooter %}      
  28.                     <div class="item-top">
  29.                         {% for contact in contacts %}
  30.                             {% if contact.texteContact %}
  31.                                 <div class="footer_right">
  32.                                     {{contact.texteContact|raw}}
  33.                                 </div>
  34.                             {% endif %}
  35.                         {% endfor %}
  36.                     </div>
  37.                 {% endif %}  
  38.                 {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/elements/_social_network.html.twig')}}
  39.                 {% if button1Footer %}
  40.                     {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/_stiky_button.html.twig', with_context = false)}}
  41.                 {% endif %}
  42.                 {% if logoPosition == 2 %}
  43.                     {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/elements/_logo_footer.html.twig')}} 
  44.                 {% endif %}
  45.             
  46.             </div>
  47.        
  48.     </section>
  49.   </div>
  50. <div class="hrz-footer-bottom">
  51.                 <div class="container-1300">
  52. {% if data_menu_footer is defined and data_menu_footer is not empty %}
  53.         <ul class="menu-bas">
  54.              {% if data_menu_footer %}
  55.                 {% for key,menu in data_menu_footer %}
  56.                         {% if menu.type == 'aucun' %}
  57.                             <li><a href="#" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}"> {{menu.title}} </a></li>
  58.                         {% elseif menu.type == 'lien' %}
  59.                             <li><a href="{{menu.url}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  60.                         {% elseif menu.type == 'categorie' or menu.type == 'sous-categorie' %}
  61.                             <li><a href="{{path('page',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  62.                         {% elseif menu.type == 'Post'%}
  63.                             <li><a href="{{path('page',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  64.                         {% elseif menu.type == 'button'%}
  65.                             <li><a class="btn btn-danger btn-footer"  href="{{menu.url}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  66.                         {% elseif menu.type == 'categorie-product'%}
  67.                             <li><a href="{{path('list_produit',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  68.                         {% elseif menu.type == 'list-faq'%}
  69.                             <li><a href="{{path('list_faq')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  70.                         {% elseif menu.type == 'plan-du-site'%}
  71.                             <li><a href="{{path('plan_du_site')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  72.                         {% elseif menu.type == 'hub-activite' %}
  73.                             <li><a href="{{path('page_activites')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  74.                         {% elseif menu.type == 'hub-localite' %}
  75.                             <li><a href="{{path('page_localite')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  76.                         {% elseif menu.type == 'hub-actualite' %}
  77.                             <li><a href="{{path('page_nos_actualites')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  78.                         {% elseif menu.type == 'activite_principal' %}
  79.                             <li><a  href="{{path('page',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  80.                         {% elseif menu.type == 'secteur' %}
  81.                             <li><a  href="{{path('page_details_localite',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  82.                         {% endif %} 
  83.                 {% endfor %}
  84.             {% endif %}
  85.         </ul>
  86.     {% endif %}
  87.     </div>
  88.     </div>
  89. </div>
  90.     <section class="sub-footer"> 
  91.         <div class="container-fluid wrapper">
  92.             <div class="items-sub-footer d-flex justify-content-center align-items-center flex-column flex-md-row">
  93.                 <ul id="footer_bottom" class="link-hover d-flex justify-content-center justify-content-md-center flex-column flex-md-row liststyle text-center">
  94.                     {% if menus %}
  95.                         {% for key,menu in menus %}
  96.                                 {% if menu.type == 'aucun' %}
  97.                                     <li><a href="#" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}"> {{menu.title}} </a></li>
  98.                                 {% elseif menu.type == 'lien' %}
  99.                                     <li><a href="{{menu.url}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  100.                                 {% elseif menu.type == 'categorie' or menu.type == 'sous-categorie' %}
  101.                                     <li><a href="{{path('page',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  102.                                 {% elseif menu.type == 'Post'%}
  103.                                     <li><a href="{{path('page',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  104.                                 {% elseif menu.type == 'button'%}
  105.                                     <li><a class="btn btn-danger btn-footer"  href="{{menu.url}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  106.                                 {% elseif menu.type == 'categorie-product'%}
  107.                                     <li><a  href="{{path('list_produit',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  108.                                 {% elseif menu.type == 'list-faq'%}
  109.                                     <li><a  href="{{path('list_faq')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  110.                                 {% elseif menu.type == 'plan-du-site'%}
  111.                                     <li><a  href="{{path('plan_du_site')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  112.                                 {% elseif menu.type == 'hub-activite' %}
  113.                                     <li><a  href="{{path('page_activites')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  114.                                 {% elseif menu.type == 'hub-localite' %}
  115.                                     <li><a  href="{{path('page_localite')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  116.                                 {% elseif menu.type == 'hub-actualite' %}
  117.                                     <li><a  href="{{path('page_nos_actualites')}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  118.                                 {% elseif menu.type == 'activite_principal' %}
  119.                                     <li><a  href="{{path('page',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  120.                                 {% elseif menu.type == 'secteur' %}
  121.                                     <li><a  href="{{path('page_details_localite',{slug:menu.slug})}}" title="{{menu.title}}" {% if menu.nofollow == true %}rel="nofollow"{% endif %} target="{{target[menu.target]}}">{{menu.title}} </a></li>
  122.                                 {% endif %} 
  123.                         {% endfor %}
  124.                     {% endif %}
  125.                     <li> <a class="titre_cookies" href="javascript:void(0)" title="Gestion des cookies" rel="nofollow" onclick="tarteaucitron.userInterface.openPanel();">Gestion des cookies</a></li>
  126.                 </ul>
  127.                 {% if logoCopyright or dateCopyright %}
  128.                     <span class="col-copyright d-flex align-items-center">
  129.                     {% if logoCopyright %}
  130.                         <span class="logo-copyright"><a href="https://www.hrz.fr" target="_blank" title="Horizon web"><img src="../logo-horizon/logo-bleu.png" width="30" class="d-block mb-1" /></a></span>
  131.                     {% endif %}
  132.                     {% if dateCopyright %}
  133.                         <span class="annee ml-1"><strong>{{ "now"|date("Y") }}</strong></span>
  134.                     {% endif %}
  135.                     </span>
  136.                 {% endif %}
  137.                 
  138.             </div>
  139.         </div>
  140.     </section>
  141. </footer>