<footer id="uc-footer" class="uc-footer panel overflow-hidden"> <div class="footer-outer vstack gap-6 lg:gap-8 py-6 lg:py-8 dark:text-white"> <div class="uc-footer-content"> <div class="container"> <div class="uc-footer-inner vstack gap-4 lg:gap-6 xl:gap-8"> <div class="uc-footer-widgets panel"> <div class="row child-cols-6 sm:child-cols col-match g-4"> <div class="col-12 sm:col-6 lg:col-3 xl:col-auto"> <div class="uc-logo" style="width:300px;"> <a class="panel text-none" href="{% if app.request.locale == default_locale %}{{ path('homepage') }}{% else %}{{ path('locale_homepage',{'_locale':app.request.locale}) }}{% endif %}" style="width: {{ logo_width }}px"> <img class="text-primary dark:text-tertiary" src="/uploads/logo.png" loading="lazy" /> </a> </div> </div> <div style="vertical-align:top;"> <h3 class="h5">{{ "Outils"|translateLocale(arrayTranslate) }}</h3> {% if app.request.locale == "fr" %} {{ footer_html_col1_fr|raw }} {% else %} {{ footer_html_col1_en|raw }} {% endif %} </div> <div style="vertical-align:top;"> <h3 class="h5">{{ "Entreprises"|translateLocale(arrayTranslate) }}</h3> {% if app.request.locale == "fr" %} {{ footer_html_col2_fr|raw }} {% else %} {{ footer_html_col2_en|raw }} {% endif %} </div> <div style="vertical-align:top;"> <h3 class="h5">{{ "Blog"|translateLocale(arrayTranslate) }}</h3> {% if app.request.locale == "fr" %} {{ footer_html_col3_fr|raw }} {% else %} {{ footer_html_col3_en|raw }} {% endif %} </div> </div> </div> <div class="uc-footer-bottom panel vstack lg:hstack gap-4 justify-between text-center pt-4 lg:pt-6 border-top dark:text-white"> <p class="opacity-60">{{ websitename }} © {{ "now"|date('Y') }}</p> <div> {% set menuHeader = getMenuWebsiteLocaleArray(app.request.locale,"footer",connectUser) %} {% if menuHeader is not empty %} {% for m in menuHeader %} <a href="{{ m.link }}" aria-label="{{ m.title }}" title="{{ m.title }}" {% if m.targetBlank == 1%}target="_blank" rel="noreferrer"{% endif %}>{{ m.title }}</a> {% endfor %} {% endif %} {% if app.user is not null %} {% if is_granted("ROLE_SUPER_ADMIN") %} <a href="{{ path('backoffice_dashboard') }}" aria-label="Administration" title="Administration" style="color:red;"><i class="fa fa-cog"></i> Administration</a> {% endif %} <a href="{{ path('app_logout') }}" aria-label="Déconnexion" title="Déconnexion">Déconnexion</a> {% endif %} </div> <ul class="nav-x justify-center gap-2"> {% if facebook is not empty %} <li> <a href="{{ facebook }}" target="_blank"> <i class="icon icon-2 unicon-logo-facebook"></i> </a> </li> {% endif %} {% if twitter is not empty %} <li> <a href="{{ twitter }}" target="_blank"> <i class="icon icon-2 unicon-logo-x-filled"></i> </a> </li> {% endif %} {% if instagram is not empty %} <li> <a href="{{ instagram }}" target="_blank"> <i class="icon icon-2 unicon-logo-instagram"></i> </a> </li> {% endif %} {% if linkedin is not empty %} <li> <a href="{{ linkedin }}" target="_blank"> <i class="icon icon-2 unicon-logo-linkedin"></i> </a> </li> {% endif %} {% if youtube is not empty %} <li> <a href="{{ youtube }}" target="_blank"> <i class="icon icon-2 unicon-logo-youtube"></i> </a> </li> {% endif %} </ul> </div> </div> </div> </div> </div></footer>