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
+27
View File
@@ -0,0 +1,27 @@
---
layout: default
title: Publications
url: /publications
---
<h1 style="font-size:1.5rem;font-weight:600;margin-bottom:2rem">Publications</h1>
<div class="pub-list">
{% assign pubs_by_year = site.publications | group_by: "year" | sort: "name" | reverse %}
{% for year_group in pubs_by_year %}
<div style="margin-bottom:2rem">
<div style="font-size:1rem;font-weight:600;color:var(--text-muted);margin-bottom:1rem">{{ year_group.name }}</div>
{% for pub in year_group.items %}
<div class="pub-card" style="margin-bottom:1rem">
<div>
<div class="pub-title">{{ pub.title }}</div>
<div class="pub-authors">{{ pub.authors }}</div>
<div class="pub-venue">{{ pub.venue }}</div>
<div class="pub-links">
{% if pub.paper_url %}<a href="{{ pub.paper_url }}" target="_blank">Paper</a>{% endif %}
{% if pub.code_url %}<a href="{{ pub.code_url }}" target="_blank">Code</a>{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>