mirror of https://github.com/jpanther/congo.git
19 lines
545 B
HTML
19 lines
545 B
HTML
|
{{ define "main" }}
|
||
|
<article class="max-w-full">
|
||
|
<header>
|
||
|
{{ if .Site.Params.article.showBreadcrumbs | default false }}
|
||
|
{{ 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 }}
|