templates/front/inc/header_fixed.html.twig line 1

Open in your IDE?
  1. <div class="header-fixed position-relative position-fixed" id="headerFixed">
  2.     <div class="m-auto col-md-12 col-xl-8 row justify-content-between logo-links">
  3.         <a href="{{ path('front_home') }}" class="mt-1">
  4.             <img src="{{ asset('img/logo_royal_hamilius.svg') }}" title="Royal Hamilius">
  5.         </a>
  6.         <div class="col-md-8 menu d-flex justify-content-center fixed-menu">
  7.             <nav class="d-flex justify-content-between align-items-center col-md-10 col-lg-8 col-xl-8">
  8.                 <a href="">Boutiques</a>
  9.                 <span>.</span>
  10.                 <a href="{{ path('front_post_list') }}">Actus</a>
  11.                 <span>.</span>
  12.                 <a href="{{ path('front_parking') }}">Parking</a>
  13.                 <span>.</span>
  14.                 <a href="{{ path('front_contact') }}">Contact</a>
  15.             </nav>
  16.         </div>
  17.     </div>
  18.     <div class="col-md-2 col-lg-3 col-xl-2 bg-red position-absolute rent-shop h-100 d-flex align-items-center white">
  19.         <div class="block-diag-red-left bg-red"></div>
  20.         <a class="link-arrow white ml-5 position-relative" target="_blank" href="https://www.royal-hamilius.lu/">
  21.             <img src="{{ asset('img/icons/arrow_right_white.svg') }}" class="position-absolute">
  22.             Louer un commerce
  23.         </a>
  24.     </div>
  25. </div>