templates/front/elements/menu.html.twig line 1

  1. <nav class="nav" itemscope itemtype="https://schema.org/SiteNavigationElement">
  2.     <div class="container">
  3.         <div class="navbar">
  4.             <div class="wrapper">
  5.                 <button class="mobile-btn">
  6.                     <img src="{{ asset('/build/img/burger-menu.svg') }}" alt="burger-menu">
  7.                 </button>
  8.                 <div class="left">
  9.                     <div class="logo">
  10.                         <a href="{{ path('index') }}" itemprop="url">
  11.                             <img src="{{ ('/build/img/logo-backipln.svg') }}" alt="" class="img-responsive" itemprop="image">
  12.                         </a>
  13.                     </div>
  14.                     <div class="links">
  15.                         <ul>
  16.                             <li itemprop="name">
  17.                                 <a href="{{ path('tradeIn.start') }}" itemprop="url">Faire une reprise</a>
  18.                             </li>
  19.                             <li itemprop="name">
  20.                                 <a href="https://ipln.fr/" itemprop="url">Acheter neuf</a>
  21.                             </li>
  22.                             <li itemprop="name">
  23.                                 <a href="https://ipln.fr/797-occasion" itemprop="url">Acheter d'occasion</a>
  24.                             </li>
  25.                             <li itemprop="name">
  26.                                 <a href="{{ path('howItWorks') }}" itemprop="url">Comment ça marche ?</a>
  27.                             </li>
  28.                         </ul>
  29.                     </div>
  30.                 </div>
  31.                 <div class="social">
  32.                     <a href="https://ipln.fr" class="ipln" target="_blank" itemprop="url">
  33.                         <img src="{{ ('/build/img/pictos/home.svg') }}" alt="Icone Facebook" itemprop="image">
  34.                     </a>
  35.                     <a href="https://www.facebook.com/Ipln.fr" class="facebook" target="_blank" itemprop="url">
  36.                         <img src="{{ ('/build/img/pictos/facebook.svg') }}" alt="Icone Facebook" itemprop="image">
  37.                     </a>
  38.                     <a href="https://www.youtube.com/channel/UCRYjUMnF6osfYVCwWzHIGkw" class="youtube" target="_blank" itemprop="url">
  39.                         <img src="{{ ('/build/img/pictos/youtube.svg') }}" alt="Icone YouTube" itemprop="image">
  40.                     </a>
  41.                     <a href="https://www.instagram.com/images_photo_lyon/" class="instagram" target="_blank" itemprop="url">
  42.                         <img src="{{ ('/build/img/pictos/instagram.svg') }}" alt="Icone Instagram" itemprop="image">
  43.                     </a>
  44.                 </div>
  45.             </div>
  46.         </div>
  47.     </div>
  48. </nav>