dork.dev/_layouts/default.liquid
2024-04-07 10:41:08 -07:00

19 lines
340 B
Text

<!DOCTYPE html>
<html>
<head>
{% include "head.liquid" %}
</head>
<body>
<div>
<header>
{% include "header.liquid" %}
</header>
<main>
{{ page.content }}
</main>
<footer>
{% include "footer.liquid" %}
</footer>
</div>
</body>
</html>