This commit is contained in:
WickedJack99
2022-09-20 17:31:47 +02:00
parent dcfa74644a
commit 41af9797f2
14 changed files with 106 additions and 29 deletions

View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
{% include navigation.html %}
{{ content }}
</body>
</html>

7
docs/_layouts/post.html Normal file
View File

@@ -0,0 +1,7 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}