dsajkdksa

This commit is contained in:
2022-08-17 14:08:54 +01:00
parent a3a94feb7a
commit 81d94fcc05
7 changed files with 128 additions and 31 deletions

12
src/layouts/lay.astro Normal file
View File

@@ -0,0 +1,12 @@
---
---
<html>
<head>
<title>My Layout</title>
</head>
<body>
<article class="prose">
<slot />
</article>
</body>
</html>

View File

@@ -1,4 +1,6 @@
---
layout: '../layouts/lay.astro'
title: 'My Markdown page'
---
# Hello world

12
src/pages/testing.astro Normal file
View File

@@ -0,0 +1,12 @@
---
---
<html>
<head>
<title>Testing</title>
</head>
<body>
<article class="prose">
<h1>Hello World</h1>
</article>
</body>
</html>