templates/_includes/_header.html.twig line 1

  1. {% if pageTitle is defined and pageTitle != null and pageTitle == 'home' %}
  2.     <div
  3.         class="container-fluid bandeau">
  4.         <div class="save-the-date">
  5.             <img src="{{ asset('assets/img/date-home.svg') }}">
  6.             <span>Save the date</span>
  7.         </div>
  8.         <p class="mb-0">
  9.             Le prochain forum de l'industrie Bourges se déroulera le
  10.             <span class="fw-bold text-uppercase">
  11.                 {{ settings[0].siteHomeforumdatejour }}
  12.                 {{ settings[0].siteHomeforumdatejournb }}
  13.                 {{ settings[0].siteHomeforumdatemois }}
  14.                 {{ settings[0].siteHomeforumdateannee }}
  15.                 !
  16.             </span>
  17.         </p>
  18.     </div>
  19. {% endif %}
  20. <nav class="container-fluid">
  21.     <div class="container">
  22.         <div class="row">
  23.             <div class="col header">
  24.                 <a href="{{ path('app_home') }}" class="text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'home' %}active{% endif %}">Le Forum</a>
  25.                 <a href="{{ path('app_programme') }}" class="text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'programme' %}active{% endif %}">Programme & infos Pratiques</a>
  26.                 <a href="{{ path('app_partenaires') }}" class="text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'partenaires' %}active{% endif %}">Partenaires</a>
  27.                 <a href="{{ path('app_offres') }}" class="text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'offres' or pageTitle == 'offre-detail' %}active{% endif %}">Offres</a>
  28.                 <a href="{{ path('app_contact') }}" class="text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'contact' %}active{% endif %}">Contact</a>
  29.             </div>
  30.         </div>
  31.     </div>
  32. </nav>