lynx/layouts/_default/single.html

13 lines
371 B
HTML
Raw Normal View History

{{ 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 }}