diff options
| author | William Hergès <william@herges.fr> | 2025-08-09 17:21:33 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-08-09 17:21:33 +0200 |
| commit | 1b763e17ecbe46a3cee806a7177b0bd60e15bf44 (patch) | |
| tree | 45cd4cd4be93ce0c4b80cb86ec21ee882c0afc56 /src/layout/Base.astro | |
| parent | e5c92241cf23546e8fdccd92050c02516f0abd9a (diff) | |
refactor(html): create layout
Diffstat (limited to 'src/layout/Base.astro')
| -rw-r--r-- | src/layout/Base.astro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/layout/Base.astro b/src/layout/Base.astro new file mode 100644 index 0000000..a67fc9f --- /dev/null +++ b/src/layout/Base.astro @@ -0,0 +1,16 @@ +--- +const { title = "Arnaud Hergès" } = Astro.props; +--- + +<html lang="fr"> + <head> + <meta charset="utf-8" /> + <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> + <meta name="viewport" content="width=device-width" /> + <meta name="generator" content={Astro.generator} /> + <title>{title}</title> + </head> + <body> + <slot /> + </body> +</html> |
