FreesideWeb/internal/_includes/layouts/default.njk

24 lines
454 B
Plaintext
Raw Normal View History

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