2021-08-18 19:56:22 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
{# include header #}
|
|
|
|
{% include "snippets/head.njk" %}
|
|
|
|
|
2021-08-20 00:57:02 +01:00
|
|
|
<body class="bg-white color-primary font-base leading-normal">
|
2021-08-29 21:23:02 +01:00
|
|
|
|
|
|
|
{# include nav #}
|
|
|
|
{% include "snippets/nav.njk" %}
|
|
|
|
|
|
|
|
|
2021-08-18 19:56:22 +01:00
|
|
|
<div id="wrapper" class="container mx-auto ">
|
|
|
|
|
|
|
|
{# include content #}
|
|
|
|
{{ content | safe }}
|
|
|
|
|
|
|
|
{# include footer #}
|
|
|
|
{% include "snippets/footer.njk" %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|