chore: track site sources + ignore local env/backups

This commit is contained in:
2026-01-19 11:46:39 +01:00
parent aece8c5526
commit 5eb23a3de4
50 changed files with 3158 additions and 38 deletions

View File

@@ -0,0 +1,33 @@
---
import SiteNav from "../components/SiteNav.astro";
import BuildStamp from "../components/BuildStamp.astro";
import "../styles/global.css";
const { title } = Astro.props;
const canonical = Astro.site
? new URL(Astro.url.pathname, Astro.site).href
: Astro.url.href;
---
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{title ? `${title} — Archicratie` : "Archicratie"}</title>
<link rel="canonical" href={canonical} />
<link rel="sitemap" href="/sitemap-index.xml" />
</head>
<body>
<header>
<SiteNav />
</header>
<main>
<article class="reading">
<slot />
<BuildStamp />
</article>
</main>
</body>
</html>