congo/layouts/_default/single.html

29 lines
926 B
HTML
Raw Normal View History

2021-08-11 05:28:33 +00:00
{{ define "main" }}
<article class="max-w-prose">
<header>
<h1 class="mt-0 text-4xl font-extrabold">{{ .Title }}</h1>
<div class="mt-8 mb-12 text-base text-gray-400 dark:text-gray-500">
{{ partial "article-meta.html" . }}
2021-08-14 04:57:31 +00:00
{{ if .Draft }}
<span
class="ml-2 px-1 py-[2px] text-xs font-normal border rounded-md text-primary-700 dark:text-primary-400 border-primary-400 dark:border-primary-600 inline-block align-middle mb-1"
>
Draft
</span>
{{ end }}
2021-08-11 05:28:33 +00:00
</div>
</header>
<section class="prose dark:prose-light">
{{ .Content | emojify }}
2021-08-11 05:28:33 +00:00
</section>
<footer>
{{ partial "author.html" . }}
{{ partial "article-pagination.html" . }}
2021-08-11 05:28:33 +00:00
</footer>
{{/* Comments */}}
{{ if templates.Exists "partials/comments.html" }}
{{ partial "comments.html" . }}
{{ end }}
</article>
{{ end }}