20 lines
531 B
Plaintext
20 lines
531 B
Plaintext
---
|
|
import SiteLayout from "../../layouts/SiteLayout.astro";
|
|
import { getCollection } from "astro:content";
|
|
|
|
const entries = await getCollection("cas-ia");
|
|
|
|
entries.sort((a, b) => (a.data.order ?? 9999) - (b.data.order ?? 9999));
|
|
|
|
const href = (slug: string) => `/cas-ia/${slug}/`;
|
|
---
|
|
|
|
<SiteLayout title="Cas pratique — Gouvernance des systèmes IA">
|
|
<h1>Cas pratique — Gouvernance des systèmes IA</h1>
|
|
|
|
<ul>
|
|
{entries.map((e) => (
|
|
<li><a href={href(e.slug)}>{e.data.title}</a></li>
|
|
))}
|
|
</ul>
|
|
</SiteLayout> |