dork.dev/_layouts/article.liquid

21 lines
401 B
Text

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