{% set breadcrumb_title_value %}{% block breadcrumb_title %}{{ block('title') }}{% endblock %}{% endset %}
{% if app.request.get('_route') != 'accueil' %}
{% do breadcrumb_trail.add(html_entity_decode(breadcrumb_title_value)) %}
{% endif %}
{% set configAffichage = getConfigAffichage() %}
{% set agence = getAgence() %}
{% set client = app.session.get('client') %}
{% if checkClientByHost == 'true' %}
{% set amicale = getAmicale() %}
{% else %}
{% set amicale = app.session.get('amicale') %}
{% endif %}
{% if client and client.amicale %}
{% set amicale = client.amicale %}
{% endif %}
{% set href_favicon = domaineBack() ~ '/' ~ (agence.favicon is defined ? agence.favicon : 'file_manager/source/favicons/favicon-32x32.webp') %}
{% set src_logo = domaineBack() ~ '/' ~ agence.logo %}
{% set alt_logo = agence.nom %}
{% if amicale and amicale.path and app.request.get('_route') not in ['app_login','app_register','subscribe','app_request_reset_password','sucess_subscribe'] %}
{% set src_logo = domaineBack() ~ '/uploads/B2B/' ~ amicale.path %}
{% set alt_logo = amicale.libelle %}
{% endif %}
{% set reseauxSociaux = getReseauxSociaux() %}
<!DOCTYPE html>
<html lang="Fr" prefix="og: http://ogp.me/ns#">
<head>
{# Meta noindex affichée si un paramètre optionnel diffère ou est présent #}
{% if should_noindex() %}
<meta name="robots" content="noindex, follow">
{% else %}
<meta name="robots" content="index, follow">
{% endif %}
{#{% block head %}#}
<!--Meta tags-->
{% set seo_begin_head = referencementByRoute(app.request.get('_route'),app.request.uri,'begin_head') %}
{{ seo_begin_head|raw }}
{% if '<title>' not in seo_begin_head %}
<title>
{% block title %}
{% set client = app.session.get('client') %}
{% if client and client.amicale %}
{{ client.amicale.libelle }}
{% else %}
{{ getAgence().nom }}
{% endif %}
{% endblock %}
</title>
{% endif %}
{# Canonical link toujours affiché #}
<link rel="canonical" href="{{ canonical_url() }}">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link rel="icon" type="image/png" href="{{ href_favicon }}">
<link rel="mask-icon" href="{{ href_favicon }}">
{% if 'name="title"' not in seo_begin_head %}
{% block meta_title %}{% endblock %}
{% endif %}
{% if 'name="description"' not in seo_begin_head %}
{% block meta_description %}{% endblock %}
{% endif %}
{% if 'name="keywords"' not in seo_begin_head %}
{% block meta_keywords %}{% endblock %}
{% endif %}
{% block stylesheets %}
<link href="{{ asset('assets-commun/css/bootstrap.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets-commun/css/bootstrap-select.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets-commun/css/font-awesome.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets-commun/css/owl.carousel.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets-commun/css/owl.theme.default.min.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets-commun/flatpickr/dist/flatpickr.min.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets-commun/css/bootstrap-select.min.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets-commun/css/jquery-ui.css') }}" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
{% if app.request.get('_route') == 'accueil' %}
<link href="{{ asset('assets-commun/css/accueil.css') }}" rel="stylesheet" type="text/css"/>
{% else %}
<link href="{{ asset('assets-commun/css/styles.css') }}" rel="stylesheet" type="text/css"/>
{% endif %}
{% if app.request.get('_route') == 'accueil' and configAffichage.VOL.MODELE_ELEMENT_BILLET == 'modele3' %}
<link href="{{ asset('assets-commun/css/Aerien.css') }}" rel="stylesheet" type="text/css"/>
{% endif %}
<link rel="stylesheet" href="{{ asset('assets-commun/css/flags.css') }}" type="text/css">
{% if file_exists('assets/css/custom-styles.css') %}
<link href="{{ asset('assets/css/custom-styles.css') }}" rel="stylesheet" type="text/css"/>
{% else %}
<link href="{{ asset('assets-commun/css/custom-styles.css') }}" rel="stylesheet" type="text/css"/>
{% endif %}
{% if hasModule('transfert') %}
{% if file_exists('assets/css/transfert.css') %}
<link href="{{ asset('assets/css/transfert.css') }}" rel="stylesheet" type="text/css"/>
{% else %}
<link href="{{ asset('assets-commun/css/transfert.css') }}" rel="stylesheet" type="text/css"/>
{% endif %}
{% endif %}
{% if configAffichage.VOYAGE.MODELE_OMRA_PERSONNALISE == '-v1' %}
{% if file_exists('assets/css/omra-v01.css') %}
<link href="{{ asset('assets/css/omra-v01.css') }}" rel="stylesheet" type="text/css"/>
{% else %}
<link href="{{ asset('assets-commun/css/omra-v01.css') }}" rel="stylesheet" type="text/css"/>
{% endif %}
{% endif %}
{% if hasModule('billetterie-avion-xml') %}
<link href="{{ asset('assets-commun/jquery-typeahead-2.11.0/dist/jquery.typeahead.min.css') }}"
rel="stylesheet" type="text/css"/>
{% if configAffichage.VOL.MODELE_ELEMENT_BILLET == 'modele3' %}
{% if file_exists('assets/css/aerien-v3.css') %}
<link href="{{ asset('assets/css/aerien-v3.css') }}" rel="stylesheet" type="text/css"/>
{% else %}
<link href="{{ asset('assets-commun/css/aerien-v3.css') }}" rel="stylesheet" type="text/css"/>
{% endif %}
{% else %}
{% if file_exists('assets/css/Aerien.css') %}
<link href="{{ asset('assets/css/Aerien.css') }}" rel="stylesheet" type="text/css"/>
{% else %}
<link href="{{ asset('assets-commun/css/Aerien.css') }}" rel="stylesheet" type="text/css"/>
{% endif %}
{% endif %}
{% endif %}
{% endblock %}
{% block injection_head %}{% endblock %}
{% if configAffichage.GENERALE.STYLESHEETS != "" %}
<!--start my stylesheet-->
<style>{{ configAffichage.GENERALE.STYLESHEETS|raw }}</style>
<!--end my stylesheet-->
{% endif %}
{{ referencementByRoute(app.request.get('_route'),app.request.uri,'end_head')|raw }}
{#{% endblock %}#}
</head>
<body id="body-book">
{{ referencementByRoute(app.request.get('_route'),app.request.uri,'begin_body')|raw }}
{% block injection_body %}{% endblock %}
{% for article in ArticlesElement().desktop %}
{% if article.code=="social-commun" %}
<ul class="social-commun">
{% if reseauxSociaux and reseauxSociaux.facebook is not null %}
<li>
<a href="{{ reseauxSociaux.facebook }}" class="btn-facebook" target="_blank">
<img src="{{ asset('assets-commun/images/icons/fb-white.svg') }}" class="social-icon-svg"
alt="">
</a>
</li>
{% endif %}
{% if reseauxSociaux and reseauxSociaux.twitter is not null %}
<li>
<a href="{{ reseauxSociaux.twitter }}" class="btn-twitter" target="_blank">
<img src="{{ asset('assets-commun/images/icons/twitter.svg') }}" class="social-icon-svg" alt="">
</a>
</li>
{% endif %}
{% if reseauxSociaux and reseauxSociaux.instagram is not null %}
<li>
<a href="{{ reseauxSociaux.instagram }}" class="btn-instagram" target="_blank">
<img src="{{ asset('assets-commun/images/icons/insta-white.svg') }}" class="social-icon-svg"
alt="">
</a>
</li>
{% endif %}
{% if reseauxSociaux and reseauxSociaux.youtube is not null %}
<li>
<a href="{{ reseauxSociaux.youtube }}" class="btn-youtube" target="_blank">
<img src="{{ asset('assets-commun/images/icons/youtube.svg') }}" class="social-icon-svg" alt="">
</a>
</li>
{% endif %}
{# <li>
<a href="https://wa.me/21628640520?text=Bienvenue" class="btn-whatsup" target="_blank">
<img style="width: 26px" src="{{ asset('assets-commun/images/icons/iconwhats-white.svg') }} " class="social-icon-svg " alt=" ">
</a>
</li> #}
</ul>
{% endif %}
{% endfor %}
<button class="btn scrolltop-btn back-top">
<i class="fa fa-angle-up"></i>
</button>
<div class="modal fade" id="pop-reset-pass" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<ul class="login-tabs">
<li class="active">
{{ "réinitialiser votre mot de passe"|trans }}</li>
</ul>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<i class="fa fa-close"></i>
</button>
</div>
<div class="modal-body">
<p>
{{ "Veuillez saisir votre identifiant ou adresse mail. Vous recevrez un lien pour créer un nouveau mot de passe via e-mail."|trans }}</p>
<form action="{{ path('app_reset_password') }}" method="post">
<div class="form-group">
<div class="input-user input-icon">
<input placeholder="{{ "Entrez votre login ou adresse mail"|trans }}" name="username"
class="form-control">
<input type="hidden" name="front_confirm_reset_password"
value="{{ absolute_url(path('app_confirm_reset_password',{token:'token'})) }}">
</div>
</div>
<button class="btn btn-primary btn-block">
{{ "réinitialiser nouveau mot de passe"|trans }}
</button>
</form>
</div>
</div>
</div>
</div>
<!--start header section header v1-->
{% if not app.request.server.get('HIDE_HEADER') %}
{% include checkCustomTemplate('header.html.twig') %}
{% endif %}
<!--end header section header v1-->
<!--start banner module-->
{% block banner %}{% endblock %}
<!--end banner module-->
<main id="section-body"> {% block header_media %}{% endblock %}
{{ apy_breadcrumb_trail_render() }}
{% block body %}{% endblock %}
</main>
<!--end main page body-->
<!--start footer section-->
{% if not app.request.server.get('HIDE_FOOTER') %}
{% include checkCustomTemplate('footer.html.twig') %}
{% endif %}
<!--end footer section-->
<!--Start Scripts-->
{% block javascripts %}
<!--Start Scripts-->
{#{{ encore_entry_script_tags('app') }}#}
<script type="text/javascript" src="{{ asset('assets-commun/js/jquery.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/modernizr.custom.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/bootstrap.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/owl.carousel.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/jquery.matchHeight-min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/bootstrap-select.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/slick.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/custom.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/flatpickr/dist/flatpickr.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/moment.min.js') }}"></script>
{% if file_exists('assets-commun/js/moment-locales/'~app.request.locale~'.js') %}
<script type="text/javascript"
src="{{ asset('assets-commun/js/moment-locales/'~app.request.locale~'.js') }}"></script>
{% endif %}
<script src="{{ asset('bundles/fosjsrouting/js/router.js') }}"></script>
<script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
<script src="{{ asset('assets-commun/js/routing-override.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/modernizr.custom.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/jquery-ui.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/isotope.pkgd.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets-commun/js/jquery.nicescroll.js') }}"></script>
{% if hasModule('transfert') %}
{% if file_exists('assets/js/transfert.js') %}
<script type="text/javascript" src="{{ asset('assets/js/transfert.js') }}"></script>
{% else %}
<script type="text/javascript" src="{{ asset('assets-commun/js/transfert.js') }}"></script>
{% endif %}
<script src="{{ asset('assets-commun/jquery-typeahead-2.11.0/dist/jquery.typeahead.min.js') }}"></script>
{% endif %}
{% if hasModule('billetterie-avion-xml') %}
{% if file_exists('assets/js/Aerien.js') %}
<script type="text/javascript" src="{{ asset('assets/js/Aerien.js') }}"></script>
{% else %}
<script type="text/javascript" src="{{ asset('assets-commun/js/Aerien.js') }}"></script>
{% endif %}
{% endif %}
{% include 'FrontCommun/javascript-base.html.twig' %}
{# <script src="https://unpkg.com/aos@next/dist/aos.js"></script>#}
{# <script>
AOS.init();
</script>#}
{% if configAffichage.googleTranslate is defined and configAffichage.googleTranslate == 'oui' %}
<script type="text/javascript"
src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<script defer type="text/javascript">
function googleTranslateElementInit() {
new google.translate.Transl
ateElement({
pageLanguage: '',
includedLanguages: 'en,fr',
layout: google.translate.TranslateElement.InlineLayout.SIMPLE
}, 'google_translate_element');
}
</script>
{% endif %}
<script>
(function ($) {
$(document).ready(function () {
$('.toggle-navbar').on('click', function (e) {
e.preventDefault();
$('body').toggleClass('navbar-open');
});
});
})(jQuery);
</script>
{% if configAffichage!= null and configAffichage.GENERALE.RECAPTCHA_FORM is defined and configAffichage.GENERALE.RECAPTCHA_FORM == 'oui' %}
{% include checkCustomTemplate('custumrecaptcha.html.twig') %}
{% endif %}
{% endblock %}
{% block jquery %}{% endblock %}
{{ referencementByRoute(app.request.get('_route'),app.request.uri,'end_body')|raw }}
</body>
</html>