blob: 19938e9cc78935b2398ce1c431cc84eef1995fae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html lang="en">
<head>
{% include "./partials/head.njk" %}
</head>
<body class="flex h-screen flex-col">
{% include "./partials/header.njk" %}
<main class="container mx-auto">
<article >
{{content | safe}}
</article>
</main>
{% include "./partials/footer.njk" %}
</body>
</html>
|