templates/application/whileresume/website/components/elements/connected.html.twig line 1

Open in your IDE?
  1. <div class="nav-wrap bg-white bg-transparent-card rounded-xxl shadow-xss pt-3 pb-1 mb-2 mt-2">
  2. <div class="nav-caption fw-600 font-xssss text-grey-500"><span></span>{{ 'sidebar.connected'|trans({}, 'whr-public') }}</div>
  3. <ul class="mb-1 top-content">
  4. <li class="logo d-none d-xl-block d-lg-block"></li>
  5. <li>
  6. <a href="{% if app.request.locale == 'en' %}{{ path('whileresume_homepage') }}{% else %}{{ path('locale_whileresume_homepage',{'_locale':app.request.locale}) }}{% endif %}" class="nav-content-bttn open-font">
  7. <i class="font-xl text-current feather-home me-3"></i>
  8. <span>{{ 'sidebar.home'|trans({}, 'whr-public') }}</span>
  9. </a>
  10. </li>
  11. <li>
  12. <a href="{% if app.request.locale == 'en' %}{{ path('whileresume_business_en') }}{% else %}{{ path('whileresume_business_fr') }}{% endif %}" class="nav-content-bttn open-font">
  13. <i class="font-xl text-current feather-globe me-3"></i>
  14. <span>{{ 'sidebar.business'|trans({}, 'whr-public') }}</span>
  15. </a>
  16. </li>
  17. </ul>
  18. </div>