change theme

This commit is contained in:
2022-09-17 19:25:01 +02:00
parent 6f5579da1a
commit 924ecd1c81
8 changed files with 145 additions and 92 deletions

View File

@ -0,0 +1,15 @@
{{ define "main" }}
<article>
<header>
{{ if .Params.showBreadcrumbs | default (.Site.Params.article.showBreadcrumbs | default false) }}
{{ partial "breadcrumbs.html" . }}
{{ end }}
<h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral text-center">
{{ .Title | emojify }}
</h1>
</header>
<section class="mt-6 prose dark:prose-invert mx-auto">
{{ .Content | emojify }}
</section>
</article>
{{ end }}