templates/header.html.twig line 1

Open in your IDE?
  1. <header>
  2.     <nav class="navbar navbar-light bg-white justify-content-start align-items-center">
  3.         {% if app.user is not null %}
  4.             <button class="navbar-toggler mr-3" type="button" data-toggle="collapse" data-target="#menu-container" aria-expanded="true" aria-controls="menu-container">
  5.                 <span class="navbar-toggler-icon"></span>
  6.             </button>
  7.         {% endif %}
  8.         <div class="title-container">
  9.             <div class="navbar-brand">
  10.                 <a href="{{ path('homepage') }}">
  11.                     <img src="{{ asset('build/images/BA-logo-color.svg') }}" alt="logo" width="60px">
  12.                 </a>
  13.             </div>
  14.             <h4 class="title">Portal GCBA Backoffice</h4>
  15.         </div>
  16.     </nav>
  17. </header>