templates/header.html.twig line 1

Open in your IDE?
  1. {% block header %}
  2.         <header class="container-fluid mb-auto mx-0 px-0" id="header">
  3.             <div class="row justify-content-between align-items-end mx-0 px-0 ">
  4.                 
  5.                     <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 my-1 py-1">
  6.                         <div class="row justify-content-between  align-items-center">
  7.                             <a class="col-md-2 col-5 mx-3 my-3 py-1" href={{"/home"}}><img class="img-fluid" src="{{ absolute_url(asset("/img/charteGraphique/logo/logo_color.svg")) }}"/></a>
  8.                             <a class="col-xl-2 col-lg-2 col-md-2 col-5 mx-1 px-md-2 px-0 my-1 py-1 btn-button-appel-offre text-md-left text-center" href="{{ path('app_register_prestataire') }}">DEVENIR PRESTATAIRE</a>
  9.                         </div>
  10.                     </div>
  11.                     <!-- <form class="form-inline my-2 my-lg-0">
  12.                         <input class="form-control mr-sm-2" type="search" placeholder="Rechercher" aria-label="Search">
  13.                         <button class="btn btn-outline-success my-2 my-sm-0" type="submit"><i class="fas fa-search text-light"></i></button>
  14.                     </form>-->
  15.                     <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 mx-0 px-0">
  16.                         {% include ('nav.html.twig') %}
  17.                     </div>
  18.                                </div>
  19.             
  20.         </header>
  21. {% endblock %}