20 lines
812 B
Plaintext
20 lines
812 B
Plaintext
<section id="projets" class="projects">
|
|||
|
|
<div class="section-container">
|
||
|
|
<h2>Nos <span class="accent-text">Projets Web</span></h2>
|
||
|
|
|
||
|
|
<div class="project-cards">
|
||
|
|
{% for project in projects %}
|
||
|
|
<a href="{{ project.url }}" target="_blank" rel="noopener noreferrer" class="project-card" style="text-decoration: none; color: inherit;">
|
||
|
|
<div class="project-icon">{{ project.icon }}</div>
|
||
|
|
<h3>{{ project.name }}</h3>
|
||
|
|
<p class="project-domain">{{ project.domain }}</p>
|
||
|
|
<p>{{ project.description }}</p>
|
||
|
|
<span class="service-link" style="margin-top: 1rem;">
|
||
|
|
Visiter le site →
|
||
|
|
</span>
|
||
|
|
</a>
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|