blob: 8aa77c81cef3fb48708b3abf4f22d132b88fdf1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html lang="en">
<head>
{% include "./partials/head.njk" %}
</head>
<body class="flex h-screen flex-col font-supply-regular bg-main-cream-white-2">
{% include "./partials/header.njk" %}
<main class="container mx-auto max-w-5xl p-8">
<section class="w-full flex flex-col items-center px-3">
<article class="flex flex-col my-2">
<div class="flex flex-col justify-start p-6 pt-2">
<div class="mt-3 text-sm md:text-xl font-supply-regular text-justify">
{{content | safe}}
</div>
</div>
</article>
</section>
</main>
{% include "./partials/footer.njk" %}
</body>
</html>
|