20 lines
667 B
HTML
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>
|