Files
CoqResearch/showcase.html
T
alois 87ff37dddb
Build and Deploy Jekyll / build (push) Has been cancelled
feat: initialisation site académique
2026-05-25 16:15:37 +02:00

20 lines
667 B
HTML

---
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>