Add index with default layout

This commit is contained in:
2023-05-23 23:34:04 +02:00
parent 9ed8b664de
commit 37c283c1dc
4 changed files with 33 additions and 6 deletions

19
_layouts/default.html Normal file
View File

@@ -0,0 +1,19 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
<!--
<nav>
<a href="/">Home</a>
<a href="/blog/">Blog</a>
</nav>
-->
<h1>{{ page.title }}</h1>
<section>{{ content }}</section>
<footer></footer>
</body>
</html>