templates/front/includes/header.html.twig line 1

Open in your IDE?
  1. <div class="container-fluid pt-2 pb-4" id="header-desktop">
  2.     <div class="row equal">
  3.         <div class="col-12 col-sm-2">
  4.             <a href="{{ path('index') }}">
  5.                 <img src="{{ asset('gfx/logo-ni-koi-full-color-2.jpg') }}" class="img-fluid logo">
  6.             </a>
  7.         </div>
  8.         <!-- /.col -->
  9.         <div class="col-12 col-sm-10 top-bar">
  10.             <div class="row no-gutters align-items-center h-70">
  11.                 <div class="col-8 slogan d-flex">
  12.                     <div class="align-self-center">
  13.                         NI-KOI.be, votre spécialiste en carpes Koï !
  14.                     </div>
  15.                 </div>
  16.                 <!-- /.col -->
  17.                 <div class="col-12 col-lg-4 d-flex justify-content-end top-menu">
  18.                     <a href="{{ path('connexion') }}" class="d-inline-block">
  19.                         <img src="{{ asset('gfx/header/white/ico-utilisateur.png') }}">
  20.                     </a>
  21.                     {% if sales_is_enable() %}
  22.                         <a href="{{ path('panier') }}" class="d-inline-block position-relative">
  23.                             {% include 'front/includes/header/ico-panier.html.twig' %}
  24.                         </a>
  25.                     {% endif %}
  26.                     <a href="{{ path('contact') }}" class="d-inline-block mr-0">
  27.                         <img src="{{ asset('gfx/header/white/ico-mail.png') }}">
  28.                     </a>
  29.                 </div>
  30.                 <!-- /.col -->
  31.             </div>
  32.             <!-- /.row -->
  33.             <div class="row no-gutters align-items-end h-30 border-top d-flex menu">
  34.                 <div class="col-9">
  35.                     {# <a href="{{ path('index') }}"> #}
  36.                     {# <img src="{{ asset('gfx/header/white/ico-accueil.png') }}" class="mr-1 hvr-icon"> #}
  37.                     {# </a> #}
  38.                     <a href="{{ path('catalogue') }}">
  39.                         <img src="{{ asset('gfx/header/white/ico-panier.png') }}" class="mr-1 hvr-icon">
  40.                         Catalogue
  41.                     </a>
  42.                     <a href="{{ path('services') }}">
  43.                         <img src="{{ asset('gfx/header/white/ico-realisations.png') }}" class="mr-1 hvr-icon">
  44.                         Services
  45.                     </a>
  46.                     <a href="{{ path('carpes-kois') }}">
  47.                         <img src="{{ asset('gfx/header/white/ico-kois2.png') }}" class="mr-1 hvr-icon">
  48.                         Carpes Koï
  49.                     </a>
  50.                     <a href="{{ path('blogs') }}">
  51.                         <img src="{{ asset('gfx/header/white/ico-services.png') }}" class="mr-1 hvr-icon">
  52.                         Blog
  53.                     </a>
  54.                 </div>
  55.                 <!-- /.col -->
  56.                 <div class="col-3 d-flex justify-content-end">
  57.                     <a href="tel:0032476928115" class="telephone mr-0">
  58.                         <img src="{{ asset('gfx/header/white/ico-phone.png') }}" class="mr-1 hvr-icon">
  59.                         +32 (0)476.92.81.15
  60.                     </a>
  61.                 </div>
  62.                 <!-- /.col -->
  63.             </div>
  64.             <!-- /.row -->
  65.         </div>
  66.         <!-- /.col -->
  67.     </div>
  68.     <!-- /.row -->
  69. </div>
  70. <!-- /.container-fluid -->