Files
wild-website/layouts/home.html
2026-01-26 23:27:16 -08:00

15 lines
412 B
HTML

{{ define "main" }}
<article class="h-full max-w-full flex flex-col">
<header>
{{ if .Params.showBreadcrumbs | default (.Site.Params.article.showBreadcrumbs | default false) }}
{{ partial "breadcrumbs.html" . }}
{{ end }}
</header>
<section class="mt-6 prose dark:prose-invert">
{{ .Content }}
</section>
<footer class="pt-8">
</footer>
</article>
{{ end }}