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

Open in your IDE?
  1. {% set menuHeader = getMenuWebsiteLocaleArray(app.request.locale,"footer",connectUser) %}
  2. {% if menuHeader is not empty %}
  3.     {% for m in menuHeader %}
  4.     <li>
  5.         <a href="{{ m.link }}" aria-label="{{ m.title }}" title="{{ m.title }}" {% if m.targetBlank == 1%}target="_blank" rel="noreferrer"{% endif %}>
  6.             <i class="font-sm feather-folder me-3 text-grey-500"></i>
  7.             <span>{{ m.title }}</span>
  8.         </a>
  9.     </li>
  10.     {% endfor %}
  11. {% endif %}
  12. {% if is_granted("ROLE_SUPER_ADMIN") %}
  13.     <li>
  14.         <a href="{{ path('backoffice_dashboard') }}" class="nav-content-bttn open-font h-auto pt-2 pb-2">
  15.             <i class="font-sm feather-settings me-3 text-grey-500"></i>
  16.             <span>{{ 'layout.sidebar.administration'|trans({}, 'whr-candidates') }}</span>
  17.         </a>
  18.     </li>
  19. {% endif %}