<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
use Twig\TemplateWrapper;
/* home/terms.html.twig */
class __TwigTemplate_ef10494a8ee9fd97ae1cb6eb2ddb8c2e extends Template
{
private Source $source;
/**
* @var array<string, Template>
*/
private array $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'title' => [$this, 'block_title'],
'stylesheets' => [$this, 'block_stylesheets'],
'body' => [$this, 'block_body'],
];
}
protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
{
// line 1
return "base_home.html.twig";
}
protected function doDisplay(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "home/terms.html.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "home/terms.html.twig"));
$this->parent = $this->load("base_home.html.twig", 1);
yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
}
// line 3
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_title(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "title"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "title"));
yield "Conditions d'utilisation | MaketOu";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 5
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_stylesheets(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheets"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheets"));
// line 6
yield " <style>
/* Styles spécifiques à la page terms - isolés pour ne pas affecter le navbar */
.terms-page {
/* Wrapper pour isoler les styles de cette page */
}
.terms-page .section_gap {
padding: 80px 0;
}
.terms-page h2 {
color: #333;
font-weight: 600;
margin-bottom: 30px;
}
.terms-page h4 {
color: #ffa200;
font-weight: 600;
margin-top: 30px;
margin-bottom: 15px;
}
.terms-page p {
color: #666;
line-height: 1.8;
margin-bottom: 15px;
}
.terms-page ul {
padding-left: 20px;
margin-bottom: 15px;
}
.terms-page ul li {
color: #666;
line-height: 1.8;
margin-bottom: 8px;
}
.terms-page a {
color: #ffa200;
text-decoration: none;
transition: color 0.3s ease;
}
.terms-page a:hover {
color: #e8910a;
text-decoration: underline;
}
/* Responsive */
@media(max-width: 768px) {
.terms-page .section_gap {
padding: 40px 0;
}
.terms-page h2 {
font-size: 1.75rem;
}
.terms-page h4 {
font-size: 1.25rem;
}
}
</style>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 74
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_body(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
// line 75
yield " <div class=\"terms-page\">
<!-- Start Banner Area -->
<section class=\"banner-area organic-breadcrumb\">
<div class=\"container\">
<div class=\"breadcrumb-banner d-flex flex-wrap align-items-center justify-content-end\">
<div class=\"col-first\">
<h1>Conditions d'utilisation</h1>
<nav class=\"d-flex align-items-center\">
<a href=\"";
// line 83
yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("ui_home");
yield "\">Accueil<span class=\"lnr lnr-arrow-right\"></span></a>
<a href=\"javascript:void(0)\">Conditions d'utilisation</a>
</nav>
</div>
</div>
</div>
</section>
<!-- End Banner Area -->
<section class=\"section_gap\">
<div class=\"container\">
<div class=\"row\">
<div class=\"col-lg-12\">
<h2 class=\"mb-4\">Conditions d'utilisation</h2>
<p class=\"text-muted\">Dernière mise à jour : ";
// line 97
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Twig\Extension\CoreExtension']->formatDate("now", "d/m/Y"), "html", null, true);
yield "</p>
<div class=\"mt-4\">
<h4>1. Acceptation des conditions</h4>
<p>En accédant et en utilisant MaketOu, vous acceptez d'être lié par ces conditions d'utilisation. Si vous n'acceptez pas ces conditions, veuillez ne pas utiliser notre plateforme.</p>
</div>
<div class=\"mt-4\">
<h4>2. Utilisation de la plateforme</h4>
<p>Vous vous engagez à utiliser MaketOu de manière légale et conforme à ces conditions. Il est interdit d'utiliser la plateforme pour :</p>
<ul>
<li>Des activités illégales ou frauduleuses</li>
<li>Vendre des produits contrefaits ou interdits</li>
<li>Harceler ou nuire à d'autres utilisateurs</li>
<li>Violer les droits de propriété intellectuelle</li>
</ul>
</div>
<div class=\"mt-4\">
<h4>3. Compte utilisateur</h4>
<p>Vous êtes responsable de maintenir la confidentialité de votre compte et de votre mot de passe. Vous acceptez de nous notifier immédiatement de toute utilisation non autorisée de votre compte.</p>
</div>
<div class=\"mt-4\">
<h4>4. Produits et services</h4>
<p>Les produits et services proposés sur MaketOu sont fournis par des vendeurs tiers. MaketOu n'est pas responsable de la qualité, de la sécurité ou de la légalité de ces produits.</p>
</div>
<div class=\"mt-4\">
<h4>5. Limitation de responsabilité</h4>
<p>MaketOu ne sera pas responsable des dommages directs, indirects, accessoires ou consécutifs résultant de l'utilisation ou de l'impossibilité d'utiliser notre plateforme.</p>
</div>
<div class=\"mt-4\">
<h4>6. Modifications</h4>
<p>Nous nous réservons le droit de modifier ces conditions à tout moment. Les modifications entreront en vigueur dès leur publication sur cette page.</p>
</div>
<div class=\"mt-4\">
<h4>7. Contact</h4>
<p>Pour toute question concernant ces conditions d'utilisation, veuillez nous contacter à <a href=\"";
// line 137
yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("ui_contact");
yield "\">contact@maketou.com</a></p>
</div>
</div>
</div>
</div>
</section>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "home/terms.html.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable(): bool
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 261 => 137, 218 => 97, 201 => 83, 191 => 75, 178 => 74, 101 => 6, 88 => 5, 65 => 3, 42 => 1,);
}
public function getSourceContext(): Source
{
return new Source("{% extends 'base_home.html.twig' %}
{% block title %}Conditions d'utilisation | MaketOu{% endblock %}
{% block stylesheets %}
<style>
/* Styles spécifiques à la page terms - isolés pour ne pas affecter le navbar */
.terms-page {
/* Wrapper pour isoler les styles de cette page */
}
.terms-page .section_gap {
padding: 80px 0;
}
.terms-page h2 {
color: #333;
font-weight: 600;
margin-bottom: 30px;
}
.terms-page h4 {
color: #ffa200;
font-weight: 600;
margin-top: 30px;
margin-bottom: 15px;
}
.terms-page p {
color: #666;
line-height: 1.8;
margin-bottom: 15px;
}
.terms-page ul {
padding-left: 20px;
margin-bottom: 15px;
}
.terms-page ul li {
color: #666;
line-height: 1.8;
margin-bottom: 8px;
}
.terms-page a {
color: #ffa200;
text-decoration: none;
transition: color 0.3s ease;
}
.terms-page a:hover {
color: #e8910a;
text-decoration: underline;
}
/* Responsive */
@media(max-width: 768px) {
.terms-page .section_gap {
padding: 40px 0;
}
.terms-page h2 {
font-size: 1.75rem;
}
.terms-page h4 {
font-size: 1.25rem;
}
}
</style>
{% endblock %}
{% block body %}
<div class=\"terms-page\">
<!-- Start Banner Area -->
<section class=\"banner-area organic-breadcrumb\">
<div class=\"container\">
<div class=\"breadcrumb-banner d-flex flex-wrap align-items-center justify-content-end\">
<div class=\"col-first\">
<h1>Conditions d'utilisation</h1>
<nav class=\"d-flex align-items-center\">
<a href=\"{{ path('ui_home') }}\">Accueil<span class=\"lnr lnr-arrow-right\"></span></a>
<a href=\"javascript:void(0)\">Conditions d'utilisation</a>
</nav>
</div>
</div>
</div>
</section>
<!-- End Banner Area -->
<section class=\"section_gap\">
<div class=\"container\">
<div class=\"row\">
<div class=\"col-lg-12\">
<h2 class=\"mb-4\">Conditions d'utilisation</h2>
<p class=\"text-muted\">Dernière mise à jour : {{ \"now\"|date(\"d/m/Y\") }}</p>
<div class=\"mt-4\">
<h4>1. Acceptation des conditions</h4>
<p>En accédant et en utilisant MaketOu, vous acceptez d'être lié par ces conditions d'utilisation. Si vous n'acceptez pas ces conditions, veuillez ne pas utiliser notre plateforme.</p>
</div>
<div class=\"mt-4\">
<h4>2. Utilisation de la plateforme</h4>
<p>Vous vous engagez à utiliser MaketOu de manière légale et conforme à ces conditions. Il est interdit d'utiliser la plateforme pour :</p>
<ul>
<li>Des activités illégales ou frauduleuses</li>
<li>Vendre des produits contrefaits ou interdits</li>
<li>Harceler ou nuire à d'autres utilisateurs</li>
<li>Violer les droits de propriété intellectuelle</li>
</ul>
</div>
<div class=\"mt-4\">
<h4>3. Compte utilisateur</h4>
<p>Vous êtes responsable de maintenir la confidentialité de votre compte et de votre mot de passe. Vous acceptez de nous notifier immédiatement de toute utilisation non autorisée de votre compte.</p>
</div>
<div class=\"mt-4\">
<h4>4. Produits et services</h4>
<p>Les produits et services proposés sur MaketOu sont fournis par des vendeurs tiers. MaketOu n'est pas responsable de la qualité, de la sécurité ou de la légalité de ces produits.</p>
</div>
<div class=\"mt-4\">
<h4>5. Limitation de responsabilité</h4>
<p>MaketOu ne sera pas responsable des dommages directs, indirects, accessoires ou consécutifs résultant de l'utilisation ou de l'impossibilité d'utiliser notre plateforme.</p>
</div>
<div class=\"mt-4\">
<h4>6. Modifications</h4>
<p>Nous nous réservons le droit de modifier ces conditions à tout moment. Les modifications entreront en vigueur dès leur publication sur cette page.</p>
</div>
<div class=\"mt-4\">
<h4>7. Contact</h4>
<p>Pour toute question concernant ces conditions d'utilisation, veuillez nous contacter à <a href=\"{{ path('ui_contact') }}\">contact@maketou.com</a></p>
</div>
</div>
</div>
</div>
</section>
{% endblock %}
", "home/terms.html.twig", "/home/u540977899/domains/maketou-ht.com/public_html/templates/home/terms.html.twig");
}
}