Spaces:
Sleeping
Sleeping
File size: 428 Bytes
b486e33 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
---
import Nav from '../components/Nav.astro';
import Footer from '../components/Footer.astro';
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title><slot name="title" /></title>
</head>
<body>
<Nav />
<main style="max-width:900px;margin:3rem auto;padding:0 1rem;">
<slot />
</main>
<Footer />
</body>
</html> |