13 lines
371 B
HTML
13 lines
371 B
HTML
{{ define "main" }}
|
|
<article class="flex flex-col items-center justify-center mt-10 ">
|
|
<header>
|
|
<h1 class="mt-2 mb-6 text-4xl font-extrabold text-center text-neutral-800 dark:text-white">
|
|
{{ .Title | emojify }}
|
|
</h1>
|
|
</header>
|
|
<section class="prose dark:prose-light">
|
|
{{ .Content | emojify }}
|
|
</section>
|
|
</article>
|
|
{{ end }}
|