2025-11-05 17:32:17 +04:00
|
|
|
<section id="hebergement" class="hosting">
|
|
|
|
|
<div class="section-container">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h2>{{ t.hosting.section_title }} <span class="accent-text">{{ t.hosting.section_title_accent }}</span></h2>
|
2025-11-05 20:39:19 +04:00
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<p class="section-subtitle">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.hosting.section_subtitle }}
|
2025-11-05 20:39:19 +04:00
|
|
|
</p>
|
2025-11-05 17:32:17 +04:00
|
|
|
|
|
|
|
|
<div class="hosting-banner">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h3>{{ t.hosting.banner_title }}</h3>
|
|
|
|
|
<p>{{ t.hosting.banner_text }}</p>
|
2025-11-05 17:32:17 +04:00
|
|
|
|
|
|
|
|
<div class="hosting-features">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for feature in t.hosting.features %}
|
2025-11-05 17:32:17 +04:00
|
|
|
<div class="hosting-feature">
|
2026-07-06 08:14:52 +04:00
|
|
|
<span>✓</span> {{ feature }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</div>
|
2026-07-06 08:14:52 +04:00
|
|
|
{% endfor %}
|
2025-11-05 17:32:17 +04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="services-offerings">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h3>{{ t.hosting.offerings_title }}</h3>
|
2025-11-05 17:32:17 +04:00
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="offer-cards">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for card in t.hosting.offer_cards %}
|
|
|
|
|
<div class="offer-card{% if card.modifier %} offer-card--{{ card.modifier }}{% endif %}">
|
|
|
|
|
<h4>{{ card.title }}</h4>
|
|
|
|
|
{% if card.intro %}
|
|
|
|
|
<p class="offer-intro">{{ card.intro }}</p>
|
|
|
|
|
{% endif %}
|
2026-07-06 01:23:33 +04:00
|
|
|
<ul class="offer-list">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for item in card.items %}
|
|
|
|
|
<li>{{ item }}</li>
|
|
|
|
|
{% endfor %}
|
2025-11-05 17:32:17 +04:00
|
|
|
</ul>
|
2026-07-06 08:14:52 +04:00
|
|
|
<p class="offer-tagline">{{ card.tagline }}</p>
|
2025-11-05 17:32:17 +04:00
|
|
|
</div>
|
2026-07-06 08:14:52 +04:00
|
|
|
{% endfor %}
|
2025-11-05 17:32:17 +04:00
|
|
|
</div>
|
|
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="hosting-note">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h4>{{ t.hosting.note_title }}</h4>
|
|
|
|
|
<p>{{ t.hosting.note_intro }}</p>
|
2026-07-06 01:23:33 +04:00
|
|
|
<ul>
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for item in t.hosting.note_items %}
|
|
|
|
|
<li>{{ item }}</li>
|
|
|
|
|
{% endfor %}
|
2025-11-05 17:32:17 +04:00
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="hosting-why">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h4>{{ t.hosting.why_title }}</h4>
|
2026-07-06 01:23:33 +04:00
|
|
|
<p>
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.hosting.why_text }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</p>
|
|
|
|
|
<a href="#contact" class="btn btn-primary">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.hosting.why_cta }} →
|
2025-11-05 17:32:17 +04:00
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|