17 lines
344 B
Plaintext
17 lines
344 B
Plaintext
---
|
|
import {Navigation} from '../components/Navigation'
|
|
import Footer from '../views/Footer.astro';
|
|
---
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<Navigation />
|
|
<article>
|
|
<slot />
|
|
</article>
|
|
<Footer />
|
|
</body>
|
|
</html> |