diff options
| author | Yuval Adam <_@yuv.al> | 2025-02-27 10:31:56 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-02-27 10:31:56 +0100 |
| commit | 82e862474f029cbee369dcc434dc69701fe327e9 (patch) | |
| tree | 4d5e04c7c2ecada380682781a575200bc1b4b57a /src/layouts | |
| parent | 5734c40eac6c69bbb9adb1c625c08461f33524d5 (diff) | |
Basic astro project
Diffstat (limited to 'src/layouts')
| -rw-r--r-- | src/layouts/Layout.astro | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..e455c61 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> + <meta name="generator" content={Astro.generator} /> + <title>Astro Basics</title> + </head> + <body> + <slot /> + </body> +</html> + +<style> + html, + body { + margin: 0; + width: 100%; + height: 100%; + } +</style> |
