templates/vitrine/lexend/components/languages/loader.html.twig line 1

Open in your IDE?
  1. {% set available_locales = app_locales|split('|') %}
  2. <li class="d-inline-block">
  3.     <a href="#" class="hstack gap-1 text-none fw-medium" role="button" aria-haspopup="true" aria-expanded="true">
  4.         <i class="icon icon-1 unicon-wikis"></i>
  5.         <span>{{ language_names[app.request.locale] | default(app.request.locale|upper) }}</span>
  6.     </a>
  7.     <div class="w-200px py-1 bg-white dark:bg-gray-700 shadow-xs rounded-2" data-uc-drop="mode: click; offset: 0; pos: top-right; boundary: !.uc-navbar-container; animation: uc-animation-slide-top-small; duration: 150;">
  8.         <ul class="nav-y gap-0 fs-7">
  9.             {% for locale in available_locales %}
  10.                 {# VĂ©rifier que la locale a un slug configurĂ© #}
  11.                 {% if business_locale_slugs[locale] is defined %}
  12.                     <li>
  13.                         {% if locale == app.request.locale %}
  14.                             <span class="w-100 p-1 px-2 hover:bg-gray-600 hover:bg-opacity-5 dark:hover:bg-white duration-150">
  15.                                 <img class="w-20px rounded-1 me-1 rtl:me-0 rtl:ms-1" src="/assets/lexend/images/common/{{ locale }}.svg" alt="{{ language_names[locale] }}" />
  16.                                 {{ language_names[locale] | default(locale|upper) }}
  17.                             </span>
  18.                         {% else %}
  19.                             <a href="{{ url('whileresume_business_' ~ locale) }}" class="w-100 p-1 px-2 hover:bg-gray-600 hover:bg-opacity-5 dark:hover:bg-white duration-150" hreflang="{{ locale }}"
  20.                                title="{{ 'Voir en %language%'|trans({'%language%': language_names[locale]}) }}">
  21.                                 <img class="w-20px rounded-1 me-1 rtl:me-0 rtl:ms-1" src="/assets/lexend/images/common/{{ locale }}.svg" alt="{{ language_names[locale] }}" />
  22.                                 {{ language_names[locale] }}
  23.                             </a>
  24.                         {% endif %}
  25.                     </li>
  26.                 {% endif %}
  27.             {% endfor %}
  28.         </ul>
  29.     </div>
  30. </li>