Ajoute le support multilingue pour les pages légales (RGPD, CGU, CGV, Mentions Légales, Cookies, Hébergement) et la page À propos, incluant les traductions en français et en anglais. Désactive aussi le sitemap pour les pages home et about.
81 lines
3.9 KiB
Twig
81 lines
3.9 KiB
Twig
{% extends 'base.twig' %}
|
|
|
|
{% block title %}{{'hosting_page_title'|trans}} - E-Cosplay{% endblock %}
|
|
|
|
{% block canonical_url %}<link rel="canonical" href="{{ url('app_hosting') }}" />
|
|
{% endblock %}
|
|
|
|
{% block breadcrumb_schema %}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "BreadcrumbList",
|
|
"itemListElement": [
|
|
{
|
|
"@type": "ListItem",
|
|
"position": 1,
|
|
"name": "home_title"|trans,
|
|
"item": "{{ app.request.schemeAndHttpHost }}"
|
|
},
|
|
{
|
|
"@type": "ListItem",
|
|
"position": 2,
|
|
"name": "hosting_short_title"|trans,
|
|
"item": "{{ app.request.schemeAndHttpHost }}{{ app.request.pathInfo }}"
|
|
}
|
|
]
|
|
}
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="max-w-4xl mx-auto py-12 px-4 sm:px-6 lg:px-8 bg-white shadow-lg rounded-lg">
|
|
<h1 class="text-3xl font-extrabold text-gray-900 border-b-2 border-red-600 pb-4 mb-8">{{'hosting_page_title_long'|trans}}</h1>
|
|
|
|
<section class="mb-8">
|
|
<h2 class="text-2xl font-semibold text-gray-800 mb-3">{{'hosting_section1_title'|trans}}</h2>
|
|
|
|
<p class="text-gray-700">
|
|
{{'hosting_section1_p1'|trans({
|
|
'%site_url%': app.request.schemeAndHttpHost
|
|
})|raw}}
|
|
</p>
|
|
|
|
<ul class="list-disc list-inside ml-4 mt-4 text-gray-700 space-y-2">
|
|
<li><strong>{{'hosting_label_host_name'|trans}} :</strong> Google Cloud Platform</li>
|
|
<li><strong>{{'hosting_label_service_used'|trans}} :</strong> {{'hosting_service_compute_cloud'|trans}}</li>
|
|
<li><strong>{{'hosting_label_company'|trans}} :</strong> Google LLC</li>
|
|
<li><strong>{{'hosting_label_address'|trans}} :</strong> 1600 Amphitheatre Parkway, Mountain View, CA 94043, États-Unis</li>
|
|
<li><strong>{{'hosting_label_data_location'|trans}} :</strong> {{'hosting_data_location_details'|trans}}</li>
|
|
<li><strong>{{'hosting_label_contact'|trans}} :</strong> {{'hosting_contact_details'|trans}}</li>
|
|
</ul>
|
|
<p class="text-sm italic text-gray-500 mt-4">{{'hosting_section1_disclaimer'|trans}}</p>
|
|
</section>
|
|
|
|
<hr class="my-8 border-gray-200">
|
|
|
|
<section class="mb-8">
|
|
<h2 class="text-2xl font-semibold text-gray-800 mb-3">{{'hosting_section2_title'|trans}}</h2>
|
|
|
|
<p class="text-gray-700">{{'hosting_section2_p1'|trans}}</p>
|
|
|
|
<h3 class="text-xl font-medium text-gray-800 mt-4">{{'hosting_cloudflare_title'|trans}}</h3>
|
|
<ul class="list-disc list-inside ml-4 mt-2 text-gray-700 space-y-1">
|
|
<li><strong>{{'hosting_label_role'|trans}} :</strong> {{'hosting_cloudflare_role'|trans}}</li>
|
|
<li><strong>{{'hosting_label_company'|trans}} :</strong> Cloudflare, Inc.</li>
|
|
<li><strong>{{'hosting_label_address'|trans}} :</strong> 101 Townsend St, San Francisco, CA 94107, États-Unis.</li>
|
|
</ul>
|
|
<p class="text-sm italic text-gray-500 mt-1">{{'hosting_cloudflare_disclaimer'|trans}}</p>
|
|
|
|
<h3 class="text-xl font-medium text-gray-800 mt-4">{{'hosting_aws_title'|trans}}</h3>
|
|
<ul class="list-disc list-inside ml-4 mt-2 text-gray-700 space-y-1">
|
|
<li><strong>{{'hosting_label_role'|trans}} :</strong> {{'hosting_aws_role'|trans}}</li>
|
|
<li><strong>{{'hosting_label_company'|trans}} :</strong> Amazon Web Services, Inc.</li>
|
|
<li><strong>{{'hosting_label_address'|trans}} :</strong> 410 Terry Avenue North, Seattle, WA 98109-5210, États-Unis.</li>
|
|
</ul>
|
|
<p class="text-sm italic text-gray-500 mt-1">{{'hosting_aws_disclaimer'|trans}}</p>
|
|
</section>
|
|
|
|
</div>
|
|
{% endblock %}
|