blob: 47cbbb6e5f158a93d56580ebb49b2e9416ad9d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html lang="en">
<head>
{% include "./partials/head.njk" %}
</head>
<body>
{% 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-4">
<div class="flex flex-col justify-start p-6 ">
<div>
<p class="text-3xl bg-rose font-medium text-center">{{title}}</p>
<p class="text-lg text-gray-500 text-center">{{date | dateFilter}}</p>
</div>
<div class="mt-10 text-xl font-supply-regular text-justify">
{{content | safe}}
</div>
</div>
</article>
</section>
<a href="/posts">back to posts</a>
</main>
{% include "./partials/footer.njk" %}
</body>
</html>
|