2022-03-07 23:46:26 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<article class="max-w-full">
|
|
|
|
<header>
|
2022-05-26 01:43:19 +00:00
|
|
|
{{ if .Params.showBreadcrumbs | default (.Site.Params.article.showBreadcrumbs | default false) }}
|
2022-03-07 23:46:26 +00:00
|
|
|
{{ partial "breadcrumbs.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
<h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral">
|
|
|
|
{{ .Title | emojify }}
|
|
|
|
</h1>
|
|
|
|
</header>
|
|
|
|
<section class="max-w-full mt-6 prose dark:prose-invert">
|
|
|
|
{{ .Content | emojify }}
|
|
|
|
</section>
|
|
|
|
<footer class="pt-8">
|
|
|
|
{{ partial "sharing-links.html" . }}
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|