Layouts
Practice with CodePen Pens
create
src\layoutsdirectory
---
---
<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> Website </title>
</head>
<body>
<!-- Nav -->
<nav>
<a href="/">Home</a>
<a href="/about/">About</a>
</nav>
<!-- Main Content -->
<main>
<slot />
</main>
<!-- Footer -->
<footer>
<p>Website Copyright YEAR</p>
</footer>
</body>
</html>Last updated