22 lines
584 B
Plaintext
22 lines
584 B
Plaintext
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
{# include header #}
|
||
|
{% include "snippets/head.njk" %}
|
||
|
{# include nav #}
|
||
|
{% include "snippets/nav.njk" %}
|
||
|
|
||
|
<body id="page-{{ page.fileSlug if page.fileSlug else 'home' }}" class="type-{{ layout | lower }} page-{{ page.fileSlug if page.fileSlug else 'home' }} bg-white color-primary font-base leading-normal">
|
||
|
<div id="wrapper" class="container mx-auto ">
|
||
|
|
||
|
{# include content #}
|
||
|
{{ content | safe }}
|
||
|
|
||
|
{# include footer #}
|
||
|
{% include "snippets/footer.njk" %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
{# include mobile nav #}
|
||
|
|
||
|
</body>
|
||
|
</html>
|