--- import ProposeModal from "../components/ProposeModal.astro"; import SiteNav from "../components/SiteNav.astro"; import LevelToggle from "../components/LevelToggle.astro"; import BuildStamp from "../components/BuildStamp.astro"; import "../styles/global.css"; const { title, editionLabel, editionKey, statusLabel, statusKey, level, version } = Astro.props; const lvl = level ?? 1; const canonical = Astro.site ? new URL(Astro.url.pathname, Astro.site).href : Astro.url.href; // Cible Gitea (injectée au build) const GITEA_BASE = import.meta.env.PUBLIC_GITEA_BASE ?? ""; const GITEA_OWNER = import.meta.env.PUBLIC_GITEA_OWNER ?? ""; const GITEA_REPO = import.meta.env.PUBLIC_GITEA_REPO ?? ""; ---