mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 15:19:18 -08:00
21 lines
459 B
Text
21 lines
459 B
Text
<!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>
|