23 lines
902 B
Plaintext
23 lines
902 B
Plaintext
|
|
<section id="fediverse" class="fediverse">
|
||
|
|
<div class="section-container">
|
||
|
|
<h2>Nos Services <span class="accent-text">Fédiverse</span></h2>
|
||
|
|
<p class="section-subtitle">Alternatives libres et éthiques aux géants du numérique</p>
|
||
|
|
|
||
|
|
<div class="services-grid">
|
||
|
|
{% for service in services %}
|
||
|
|
<div class="service-card">
|
||
|
|
<div class="service-icon">{{ service.icon }}</div>
|
||
|
|
<h3>{{ service.name }}</h3>
|
||
|
|
<div class="service-platform">{{ service.platform }}</div>
|
||
|
|
<p class="service-description">
|
||
|
|
{{ service.description }}
|
||
|
|
</p>
|
||
|
|
<a href="{{ service.url }}" target="_blank" class="service-link">
|
||
|
|
{{ service.linkText }} →
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|