lynx/layouts/_default/single.html

16 lines
509 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
2024-05-01 13:17:15 +08:00
<article class="mt-10 flex flex-col items-center justify-center">
2021-11-06 13:54:11 +08:00
<nav class="place-self-start">
<a href="{{ "" | relURL }}" class="text-neutral-500">&larr; {{ i18n "nav.home" }}</a>
2021-11-06 13:54:11 +08:00
</nav>
<header>
2024-05-01 13:17:15 +08:00
<h1 class="mb-6 mt-2 text-center text-4xl font-extrabold text-neutral-800 dark:text-white">
{{ .Title | emojify }}
</h1>
</header>
<section class="prose dark:prose-invert">
{{ .Content | emojify }}
</section>
</article>
{{ end }}