feat: initialisation site académique
Build and Deploy Jekyll / build (push) Has been cancelled

This commit is contained in:
2026-05-25 16:15:37 +02:00
parent f131ff22bf
commit 87ff37dddb
16 changed files with 362 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
---
layout: default
title: Projets
url: /showcase
---
<h1 style="font-size:1.5rem;font-weight:600;margin-bottom:2rem">Projets</h1>
<div class="showcase-grid">
{% for project in site.showcase %}
<a class="showcase-card" href="{{ project.url }}" {% if project.url contains 'http' %}target="_blank"{% endif %} style="display:block;text-decoration:none;color:inherit">
<div class="showcase-title">{{ project.title }}</div>
<div class="showcase-desc">{{ project.description }}</div>
<div class="showcase-tags">
{% for tag in project.tags %}
<span class="showcase-tag">{{ tag }}</span>
{% endfor %}
</div>
</a>
{% endfor %}
</div>