This commit is contained in:
15
src/layouts/BaseLayout.astro
Normal file
15
src/layouts/BaseLayout.astro
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
const pageTitle = Astro.props.title || "Corwin Perren";
|
||||
---
|
||||
<html lang="en">
|
||||
<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>{pageTitle}</title>
|
||||
</head>
|
||||
<body class="container mx-auto">
|
||||
<slot/>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user