refactor(glossaire): introduce dedicated GlossaryLayout wrapper
All checks were successful
SMOKE / smoke (push) Successful in 4s
CI / build-and-anchors (push) Successful in 41s
CI / build-and-anchors (pull_request) Successful in 39s

This commit is contained in:
2026-03-13 15:11:39 +01:00
parent 4f009a9557
commit 67128a9ca1
2 changed files with 28 additions and 8 deletions

View File

@@ -0,0 +1,24 @@
---
import EditionLayout from "./EditionLayout.astro";
const {
title,
version,
} = Astro.props;
---
<EditionLayout
title={title}
editionLabel="Glossaire"
editionKey="glossaire"
statusLabel="Référentiel"
statusKey="referentiel"
level={1}
version={version}
>
<Fragment slot="aside">
<slot name="aside" />
</Fragment>
<slot />
</EditionLayout>