my website at https://anirudh.fi
1<!doctype html>
2<html lang=en>
3 <head>
4 {{ template "partials/head.html" }}
5 <meta name="description" content="{{ index .Meta "subtitle" }}">
6 </head>
7 <title>
8 {{ index .Meta "title" }}
9 </title>
10 <body>
11 <main>
12 <div>
13 {{ template "partials/nav.html" }}
14 </div>
15 <article>
16 <section class="dark:text-dark-gray text-gray lowercase">
17 {{ $dateStr := index .Meta "date" }}
18 {{ $date := parsedate $dateStr }}
19 {{ $date.Format "02 Jan, 2006" }}
20 </section>
21
22 <section>
23 <h1 class="-mb-4">{{ index .Meta "title" }} {{ if .Meta.draft }}
24 <span class="text-base text-red-400">[draft]</span>{{ end }}
25 </h1>
26 <h2 class="text-gray dark:text-dark-gray">{{ index .Meta "subtitle" }}</h2>
27 <div class="mt-12">
28 {{ .Body }}
29 </div>
30 </section>
31 </article>
32 </main>
33 <footer>
34 {{ template "partials/footer.html" }}
35 </footer>
36 </body>
37
38</html>