templates/page/cgv.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
    
    {% block title %}Conditions Générales de Vente - Qwantic{% endblock %}
    
    {% block meta %}
        <meta name="description" content="Découvrez nos conditions générales de vente.">
    {% endblock %}
    
    {% block schemaOrg %}
        <script type="application/ld+json">
            {
                "@context": "https://schema.org",
                "@type": "BreadcrumbList",
                "itemListElement": [
                    {
                        "@type": "ListItem",
                        "position": 1,
                        "name": "Accueil",
                        "item": "{{ url('home') }}"
                    },
                    {
                        "@type": "ListItem",
                        "position": 2,
                        "name": "Conditions Générales de Ventes",
                        "item": "{{ url('cgv') }}"
                    }
                ]
            }
        </script>
    {% endblock schemaOrg %}
    
    {% block body %}
        <section id="cgv" class="p-horizontal p-vertical">
            <div class="p-vertical !pb-10 flex flex-col gap-8">
                <h1 class="p-horizontal font-allerBold uppercase text-center text-2xl">Conditions Générales de Vente (CGV)</h1>
            </div>
    
            <div class="flex flex-col gap-2 pb-10">
                <p>
                </p>
            </div>
        </section>
    {% endblock %}