{% extends "base_frontend.html.twig" %} 
 
{% block meta_robot %} 
    {{ parent() }} 
    <link rel="canonical" href="{{ url('frontend-legal-notice') }}"/> 
    {{ source('stubs/seo/robots_noindex_nofollow.html.twig') }} 
{% endblock %} 
 
{% block meta_title %}{{ 'seo.landing.legalNotice.title'|trans({}, "seo") }}{% endblock %} 
{% block meta_desc %}{{ 'seo.landing.legalNotice.desc'|trans({}, "seo") }}{% endblock %} 
 
{% block tawkto %} 
    {% if type is not defined or type == 'private' %} 
        {{ 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="mentions-legales"> 
                <div class="landing-header"> 
                    <h1 class="titre05">{{ 'frontend.landing.mention_legal.title01'|trans({}, 'landing')|raw }}</h1> 
                </div> 
                <div class="landing-content"> 
                    <div> 
                        <h2 class="titre01 paddingB20 txtcenter">{{ 'frontend.landing.mention_legal.content.title01'|trans({}, 'landing')|raw }}</h2> 
 
                        <h3 class="titre04">{{ 'frontend.landing.mention_legal.content.subtitle01'|trans({}, 'landing')|raw }}</h3> 
                        <p> 
                            {{ 'frontend.landing.mention_legal.content.text01'|trans({}, 'landing')|raw }} 
                            <a 
                                {% if (app.user is not null and app.user is pro) or 'pro' == app.session.get('dimension') %} 
                                    href="{{ path('frontend_cgv_pro') }}" 
                                {% else %} 
                                    href="{{ path('frontend_cgv_country', {'country': 'fr'}) }}" 
                                {% endif %} 
                                title="" class="lien03">{{ 'frontend.footer.cgv'|trans }}</a> 
                        </p> 
 
                        <h3 class="titre04">{{ 'frontend.landing.mention_legal.content.subtitle02'|trans({}, 'landing')|raw }}</h3> 
                        <p> 
                            {{ 'frontend.landing.mention_legal.content.text02'|trans({}, 'landing')|raw }} 
                        </p> 
 
                        <h3 class="titre04">{{ 'frontend.landing.mention_legal.content.subtitle03'|trans({}, 'landing')|raw }}</h3> 
                        <p> 
                            {{ 'frontend.landing.mention_legal.content.text03'|trans({}, 'landing')|raw }} 
                        </p> 
 
                        <h3 class="titre04">{{ 'frontend.landing.mention_legal.content.subtitle04'|trans({}, 'landing')|raw }}</h3> 
                        <p> 
                            {{ 'frontend.landing.mention_legal.content.text04'|trans({}, 'landing')|raw }}<br> 
                            <a 
                                {% if (app.user is not null and app.user is pro) or 'pro' == app.session.get('dimension') %} 
                                    href="{{ path('frontend_privacy_policy', {'type': 'pro'}) }}" 
                                {% else %} 
                                    href="{{ path('frontend_privacy_policy') }}" 
                                {% endif %} 
                                title="" class="lien03">{{ 'frontend.footer.privacy'|trans }}</a> 
                        </p> 
                    </div> 
                </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 %}