diff options
author | 2024-10-11 22:39:31 +0800 | |
---|---|---|
committer | 2024-10-11 22:39:31 +0800 | |
commit | fd367b5341037ea5026b859e995a66d32f78498b (patch) | |
tree | ea3b8912332b1e8299ba4a8435fb5577a7491abe /examples/with-markdown-shiki/src/layouts/main.astro | |
parent | 58e22bd042f9a67c2167605bc7ee45538f1b4921 (diff) | |
download | astro-fd367b5341037ea5026b859e995a66d32f78498b.tar.gz astro-fd367b5341037ea5026b859e995a66d32f78498b.tar.zst astro-fd367b5341037ea5026b859e995a66d32f78498b.zip |
Remove some examples (#12196)
Diffstat (limited to 'examples/with-markdown-shiki/src/layouts/main.astro')
-rw-r--r-- | examples/with-markdown-shiki/src/layouts/main.astro | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/examples/with-markdown-shiki/src/layouts/main.astro b/examples/with-markdown-shiki/src/layouts/main.astro deleted file mode 100644 index 7f5bc2ac2..000000000 --- a/examples/with-markdown-shiki/src/layouts/main.astro +++ /dev/null @@ -1,17 +0,0 @@ ---- -import '../styles/global.css'; - -const { content } = Astro.props; ---- - -<html lang={content.lang || 'en'}> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <title>{content.title}</title> - </head> - <body> - <slot /> - </body> -</html> |