templates/marketplace/components/header.html.twig line 1

Open in your IDE?
  1. <div class="container">
  2.     <header class="justify-content-between py-3 ">
  3.       <nav class="navbar navbar-expand-lg" aria-label="Main navigation">
  4.         <div class="container-fluid">
  5.           <a href="{{ path('marketplace_app_collective_events') }}" class="d-flex align-items-center mb-md-0 me-md-auto text-dark text-decoration-none">
  6.             <img class="img-fluid logo" src="{{ asset('build/images/marketplace/logo.svg') }}" alt="logo">
  7.           </a>
  8.            {% block menu %}
  9.             {% include 'marketplace/components/menu.html.twig' %}
  10.            {% endblock %}
  11.         </div>
  12.       </nav>
  13.     </header>
  14.   </div>