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">
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ partial "article-meta.html" . }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<section class="prose dark:prose-light">
|
2021-08-13 07:17:32 +00:00
|
|
|
{{ .Content | emojify }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</section>
|
|
|
|
<footer>
|
|
|
|
{{ partialCached "author.html" . }}
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ 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 }}
|