{% extends "base_frontend.html.twig" %}
{% block meta_title %}{{ 'seo.landing.privacyPolicy.title'|trans({}, "seo") }}{% endblock %}
{% block meta_desc %}{{ 'seo.landing.privacyPolicy.desc'|trans({}, "seo") }}{% endblock %}
{% block meta_robot %}
{{ parent() }}
{% if type is defined and type == 'pro' %}
<link rel="canonical" href="{{ absolute_url(path('frontend_privacy_policy', {'type': 'pro'})) }}" />
{% else %}
<link rel="canonical" href="{{ url('frontend_privacy_policy') }}" />
{% endif %}
{{ source('stubs/seo/robots_noindex_nofollow.html.twig') }}
{% endblock %}
{% block tawkto %}
{% if type is not defined or type != 'pro' %}
{{ parent() }}
{% endif %}
{% endblock %}
{% block layout_content %}
{% if (app.user is not null and app.user is pro) or 'pro' == app.session.get('dimension') %}
{% include 'frontend/header_pro.html.twig' %}
{% else %}
{% include 'frontend/header.html.twig' %}
{% endif %}
<div class="main-content clearfix">
{% block body_content %}
<div class="politique-confidentialite">
<div class="landing-header">
<h1 class="titre05">{{ 'frontend.landing.privacy-policy.header.title'|trans({}, 'landing') }}</h1>
</div>
<div class="landing-content">
{% if is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_BELGIUM')) %}
<div>
<div>
<span>{{ 'frontend.landing.privacy-policy.content.section01.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section02.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section02.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section03.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section03.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section04.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section04.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section05.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section05.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section06.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section06.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section07.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section07.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section10.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section10.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section11.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section11.desc'|trans({}, 'landing')|raw }}</span>
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.content.section12.title'|trans({}, 'landing') }}</h2>
<span>{{ 'frontend.landing.privacy-policy.content.section12.desc'|trans({}, 'landing')|raw }}</span>
</div>
</div>
{% else %}
<div>
<div>
{{ 'frontend.landing.privacy-policy.v2.introduction'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.A.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.A.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.B.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.B.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.C.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.C.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.D.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.D.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.E.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.E.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.F.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.F.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.G.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.G.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.H.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.H.desc'|trans({}, 'landing')|raw }}
</div>
<div>
<h2 class="titre04">{{ 'frontend.landing.privacy-policy.v2.content.I.title'|trans({}, 'landing') }}</h2>
{{ 'frontend.landing.privacy-policy.v2.content.I.desc'|trans({}, 'landing')|raw }}
</div>
</div>
{% endif %}
</div>
</div>
<!--Footer -->
{% if (app.user is not null and app.user is pro) or 'pro' == app.session.get('dimension') %}
{% include 'frontend/footer_pro.html.twig' %}
{% else %}
{% include 'frontend/footer.html.twig' %}
{% endif %}
<!-- FIN Footer -->
{% endblock body_content %}
</div>
{% endblock layout_content %}