templates/layout/header.html.twig line 1

  1. {#<header class="mb-6">
  2.     <nav class="bg-white border-gray-200 dark:bg-gray-900">
  3.         <div class="flex flex-wrap items-center justify-between mx-auto">
  4.             <a href="/" class="flex items-center space-x-3 rtl:space-x-reverse">
  5.                 <img src="{{ asset('build/images/logo.png') }}" alt="Logo" class="h-20">
  6.             </a>
  7.             <button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-default" aria-expanded="false">
  8.                 <span class="sr-only">Open main menu</span>
  9.                 <svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
  10.                     <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 1h15M1 7h15M1 13h15"/>
  11.                 </svg>
  12.             </button>
  13.             <div class="flex items-center lg:order-2" id="navbar-default">
  14.                 <span class="mx-5 font-bold">
  15.                     {{ app.user.fullName }}
  16.                 </span>
  17.                 <ul class="flex flex-col mt-4 font-medium lg:flex-row lg:space-x-8 lg:mt-0">
  18.                     {% if is_granted('ROLE_ADMIN') %}
  19.                         <li>
  20.                             <a href="{{ path('sonata_admin_dashboard') }}" class="button-red">Admin</a>
  21.                         </li>
  22.                     {% endif %}
  23.                     {% if app.user %}
  24.                         {% if is_granted('IS_IMPERSONATOR') %}
  25.                             <li>
  26.                                 <a href="{{ impersonation_exit_path(path('sonata_admin_dashboard') ) }}" class="button-blue">Exit Impersonation</a>
  27.                             </li>
  28.                         {% else %}
  29.                             <li>
  30.                                 <a href="{{ path('app_logout') }}" class="button-blue">Logout</a>
  31.                             </li>
  32.                         {% endif %}
  33.                     {% endif %}
  34.                 </ul>
  35.             </div>
  36.         </div>
  37.     </nav>
  38. </header>#}
  39.     {% if app.user %}
  40.         <div class="text-right bg-[#0091d0] text-white px-8 py-2 font-bold">
  41.             <div class="animate__animated animate__fadeIn">
  42.                 Welcome, {{ app.user.fullName }}
  43.             </div>
  44.         </div>
  45.     {% endif %}
  46.     <header class="bg-blue-100 px-8 py-3 border-bottom-2 border-b-2 border-blue-200">
  47.         <nav class="">
  48.             <div class=" flex flex-wrap items-center justify-between mx-auto p-4">
  49.                 <a href="/" class="flex items-center space-x-3 rtl:space-x-reverse">
  50.                     <img src="{{ asset('build/images/logo.png') }}" alt="Logo" class="h-20 animate__animated animate__bounce">
  51.                 </a>
  52.                 <button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg lg:hidden hover:bg-[#041e42] focus:outline-none focus:ring-0 focus:ring-mc-blue-900" aria-controls="navbar-default" aria-expanded="false">
  53.                     <span class="sr-only">Open main menu</span>
  54.                     <svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
  55.                         <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 1h15M1 7h15M1 13h15"/>
  56.                     </svg>
  57.                 </button>
  58.                 <div class="hidden w-full lg:block lg:w-auto" id="navbar-default">
  59.                     {{ knp_menu_render('main', {'currentClass': 'active', 'class' : ''}) }}
  60.                 </div>
  61.             </div>
  62.         </nav>
  63.     </header>