diff options
Diffstat (limited to 'src/layout')
| -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> |
