feat: initial commit

This commit is contained in:
Kat Inskip 2024-04-07 10:15:39 -07:00
commit bec441fb57
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
8 changed files with 180 additions and 0 deletions

21
_layouts/default.liquid Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>dork.dev - {{ page.title }}</title>
<link rel="stylesheet" type="text/css" href="/stylesheet.css">
</head>
<body>
<div>
<header>
{% include "header.liquid" %}
</header>
<main>
{{ page.content }}
</main>
<footer>
{% include "footer.liquid" %}
</footer>
</div>
</body>
</html>