<!DOCTYPE html>
<html class="h-100">
<head>
{% if app.request.query.get('search_category') != null %}
{% set searchParams = app.request.query.get('search_category') %}
{% elseif app.request.query.get('search') != null %}
{% set searchParams = app.request.query.get('search') %}
{% elseif app.request.query.get('env') != null %}
{% set searchParams = {'env': app.request.query.get('env')} %}
{% elseif app.request.query.get('marketplaceCategory') != null %}
{% set searchParams = {'marketplaceCategory': app.request.query.get('marketplaceCategory')} %}
{% else %}
{% set searchParams = [] %}
{% endif %}
{% set seo = seoRepo.getSeoContent(app.request.get('_route'), searchParams) %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="{{ asset('build/images/favicon/cropped_logo_header_180.png') }}">
<link rel="icon" href="{{ asset('build/images/favicon/favicon_wellbing.png') }}" type="image/png">
{# {% block title %} #}
<title>{{seo.0.seoTitle|default("WELLBING")}}</title>
<meta itemprop="name" content="{{seo.0.seoTitle|default("")}}">
<meta name="twitter:title" content="{{seo.0.seoTitle|default("")}}">
<meta property="og:title" content="{{seo.0.seoTitle|default("")}}">
<meta name="description" content="{{seo.0.seoDescription|default("")}}">
<meta itemprop="description" content="{{seo.0.seoDescription|default("")}}">
<meta name="twitter:description" content="{{seo.0.seoDescription|default("")}}">
<meta property="og:description" content="{{seo.0.seoDescription|default("")}}">
{# {% endblock %} #}
{# Run `composer require symfony/webpack-encore-bundle` and uncomment the following Encore helpers to start using Symfony UX #}
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<link href="{{ asset('fa/fontawesome-all.min.css') }}" rel="stylesheet">
<link href="{{ asset('fa-pro/css/all.min.css') }}" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;700;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;700;900&display=swap" rel="stylesheet">
<!-- Link Swiper's CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
{# CHAT #}
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="{{HUBSPOT.JS_URL}}"></script>
<!-- End of HubSpot Embed Code -->
{% block stylesheets %}
{{ encore_entry_link_tags('app-marketplace') }}
{% endblock %}
<script type="text/javascript" src="{{ asset('tarteaucitron/tarteaucitron.js') }}"></script>
<script type="text/javascript">
tarteaucitron.init({
"privacyUrl": "{{ path('marketplace_app_conditionsGenerales') }}", /* Privacy policy url */
"hashtag": "#tarteaucitron", /* Open the panel with this hashtag */
"cookieName": "tarteaucitron", /* Cookie name */
"orientation": "middle", /* Banner position (top - bottom) */
"showAlertSmall": false, /* Show the small banner on bottom right */
"cookieslist": true, /* Show the cookie list */
"closePopup": false, /* Show a close X on the banner */
"showIcon": false, /* Show cookie icon to manage cookies */
"iconPosition": "BottomLeft", /* BottomRight, BottomLeft, TopRight and TopLeft */
"adblocker": false, /* Show a Warning if an adblocker is detected */
"DenyAllCta" : false, /* Show the deny all button */
"AcceptAllCta" : true, /* Show the accept all button when highPrivacy on */
"highPrivacy": true, /* HIGHLY RECOMMANDED Disable auto consent */
"handleBrowserDNTRequest": false, /* If Do Not Track == 1, disallow all */
"removeCredit": true, /* Remove credit link */
"moreInfoLink": true, /* Show more info link */
"useExternalCss": false, /* If false, the tarteaucitron.css file will be loaded */
"useExternalJs": false, /* If false, the tarteaucitron.js file will be loaded */
//"cookieDomain": ".my-multisite-domaine.fr", /* Shared cookie for multisite */
"readmoreLink": "", /* Change the default readmore link */
"mandatory": true, /* Show a message about mandatory cookies */
});
tarteaucitron.user.googletagmanagerId = 'GTM-5LX63R6V'; /* Google Tag Manager */
(tarteaucitron.job = tarteaucitron.job || []).push('googletagmanager');
(tarteaucitron.job = tarteaucitron.job || []).push('phpsessid');
</script>
<script type="text/javascript" src="{{ asset('tarteaucitron/tarteaucitronCustom.js') }}"></script>
{% block javascripts %}
{# // <script src="https://player.vimeo.com/api/player.js"></script> #}
{{ encore_entry_script_tags('app-marketplace') }}
{% endblock %}
</head>
<body class="d-flex flex-column h-100">
<main class="flex-shrink-0">
{% include "marketplace/components/_help_modal.html.twig" %}
{% block header %}
{% include 'marketplace/components/header.html.twig' %}
{% endblock %}
{% for label, messages in app.flashes(['warning', 'error']) %}
{% for message in messages %}
<div class="alert alert-{{ label }} alert-dismissible" role="alert">
{{ message }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endfor %}
{% block body %}{% endblock %}
</main>
{% block footer %}
{% include 'marketplace/components/footer.html.twig' %}
{% endblock %}
</body>
</html>