2021-08-11 05:28:33 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<article class="max-w-prose">
|
|
|
|
<header>
|
2021-08-18 00:08:06 +00:00
|
|
|
{{ if .Site.Params.article.showBreadcrumbs | default false }}
|
|
|
|
{{ partial "breadcrumbs.html" . }}
|
|
|
|
{{ end }}
|
2021-12-21 02:22:45 +00:00
|
|
|
<h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral">
|
2021-08-20 07:02:08 +00:00
|
|
|
{{ .Title | emojify }}
|
|
|
|
</h1>
|
2021-12-21 02:22:45 +00:00
|
|
|
<div class="mt-8 mb-12 text-base text-neutral-500 dark:text-neutral-400">
|
2021-08-21 01:42:40 +00:00
|
|
|
{{ partial "article-meta.html" (dict "context" . "scope" "single") }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
2022-01-17 03:14:52 +00:00
|
|
|
<section class="markdown dark:markdown-invert">
|
2021-08-13 07:17:32 +00:00
|
|
|
{{ .Content | emojify }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</section>
|
2021-08-16 07:06:35 +00:00
|
|
|
<footer class="pt-8">
|
2021-08-15 01:21:37 +00:00
|
|
|
{{ partial "author.html" . }}
|
2021-08-16 07:06:35 +00:00
|
|
|
{{ partial "sharing-links.html" . }}
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ partial "article-pagination.html" . }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</footer>
|
|
|
|
{{ if templates.Exists "partials/comments.html" }}
|
|
|
|
{{ partial "comments.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|