21 lines
295 B
Plaintext
21 lines
295 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include "_head.liquid" %}
|
|
</head>
|
|
<body>
|
|
{% include "_menu.liquid" %}
|
|
|
|
|
|
<main>
|
|
<article>
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
{{ page.content }}
|
|
</article>
|
|
</main>
|
|
|
|
{% include "_footer.liquid" %}
|
|
</body>
|
|
</html>
|