diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-05 18:01:13 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-05 18:01:13 +0300 |
commit | 17c3115a0608bb7ef42c8038b36f24b2356004ec (patch) | |
tree | fb59e691830155a1b003dca9125fd871bd66176c /src/layouts/BaseLayout.astro | |
parent | 7ba2de71480c1b568ed8b7d7f693f17774da1684 (diff) | |
download | popov.link-17c3115a0608bb7ef42c8038b36f24b2356004ec.tar.xz popov.link-17c3115a0608bb7ef42c8038b36f24b2356004ec.zip |
Added basic structure
Diffstat (limited to 'src/layouts/BaseLayout.astro')
-rw-r--r-- | src/layouts/BaseLayout.astro | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 2def353..5a73ac6 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -1,27 +1,15 @@ --- -import CanonicalURL from "../components/CanonicalURL.astro"; +import Head from "../components/Head.astro"; +import Header from "../components/Header.astro"; --- <html> - <head> - <!-- Meta tags --> - <meta content="IE=edge" http-equiv="X-UA-Compatible" /> - <meta content="text/html; charset=utf-8" http-equiv="content-type" /> - <meta content="width=device-width, initial-scale=1" name="viewport" /> - <meta content="index, follow" name="robots" /> - - <!-- Title / Description --> - <meta content="Description" name="description" /> - <title>Title</title> - - <!-- RSS --> - <link href="#" rel="alternate" title="RSS" type="application/atom+xml" /> - - <!-- Canonical URL --> - <CanonicalURL /> - </head> + <Head /> <body> - <slot /> + <Header /> + <article> + <slot /> + </article> </body> </html> |