templates/commun/header-menu.html.twig line 1

Open in your IDE?
  1. <ul class="nav nav-pills d-print-none text-center ml-sm-auto pt-1 pb-1">
  2.     <li class="nav-item ml-1 mr-1"><a href="/" class="nav-link active" aria-current="page" title="Accueil"><i class="fas fa-home"></i></a></li>
  3.     {% if app.user.customerNumber is defined %}
  4.     <li class="nav-item ml-1 mr-1">
  5.         <a href="/panier" class="nav-link bg-primary text-white" aria-current="page" title="Panier">
  6.             <i class="fas fa-shopping-cart"></i>
  7.             {% if count_cart is defined %}
  8.             <span class="ml-2 badge bg-light text-secondary rounded-pill">{{ count_cart }}</span>
  9.             {% endif %}
  10.         </a>
  11.     </li>
  12.     <li class="nav-item ml-1 mr-1">
  13.         <a href="/mon-compte/portefeuille" class="nav-link bg-primary text-white" aria-current="page" title="Mon compte">
  14.             <i class="fas fa-wallet"></i>&nbsp;
  15.             <span>117.80 €</span>
  16.         </a>
  17.     </li>
  18.     <li class="nav-item ml-1 mr-1">
  19.         <a class="nav-link bg-danger text-white px-2" href="{{ path('app_logout') }}" title="Déconnexion"><i class="fas fa-sign-out-alt"></i></a>
  20.     </li>
  21.     {% elseif app.user != null %}
  22.     <li class="nav-item ml-1 mr-1">
  23.         <a href="/" class="nav-link bg-warning text-white" aria-current="page" title="Vous êtes connecté en admin"><i class="fas fa-user-shield"></i></a>
  24.     </li>
  25.     <li class="nav-item ml-1 mr-1">
  26.         <a class="nav-link bg-danger text-white px-2" href="{{ path('app_logout') }}" title="Déconnexion"><i class="fas fa-sign-out-alt"></i></a>
  27.     </li>
  28.     {% else %}
  29.     <li class="nav-item ml-1 mr-1">
  30.         <a href="/panier" class="nav-link bg-primary text-white" aria-current="page" title="Panier">
  31.             <i class="fas fa-shopping-cart"></i>
  32.             {% if count_cart is defined %}
  33.             <span class="ml-2 badge bg-light text-secondary rounded-pill">{{ count_cart }}</span>
  34.             {% endif %}
  35.         </a>
  36.     </li>
  37.     <li class="nav-item ml-1 mr-1">
  38.         <a href="/mon-compte" class="nav-link bg-primary text-white" aria-current="page" title="Mon compte"><i class="fas fa-user"></i></a>
  39.     </li>
  40.     {% endif %}
  41. </ul>