mirror of
https://github.com/withastro/astro.git
synced 2025-03-17 23:11:29 -05:00
fix(starlog): Correct layout syntax. (#10627)
This commit is contained in:
parent
046d69d517
commit
6d034733a8
2 changed files with 7 additions and 7 deletions
|
@ -7,6 +7,7 @@ export type Props = Partial<SEOProps>;
|
|||
const { title = SiteTitle, name = SiteTitle, description = SiteDescription, ...seo } = Astro.props;
|
||||
---
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<SEO {title} {description} {name} {...seo} />
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
|
|
|
@ -9,15 +9,14 @@ const { ...head } = Astro.props;
|
|||
---
|
||||
|
||||
<!doctype html>
|
||||
<meta charset="utf-8" />
|
||||
<html lang="en">
|
||||
<head>
|
||||
<BaseHead {...head} />
|
||||
<body>
|
||||
<div class="glow"></div>
|
||||
<Header />
|
||||
<slot />
|
||||
<Footer />
|
||||
</body>
|
||||
</head>
|
||||
<body>
|
||||
<div class="glow"></div>
|
||||
<Header />
|
||||
<slot />
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue