15 lines
237 B
Plaintext
15 lines
237 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
{% include 'head.liquid' %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="main-container">
|
||
|
<main>
|
||
|
{{ page.content }}
|
||
|
{% include 'footer.liquid' %}
|
||
|
</main>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|