Basic homepage.

This commit is contained in:
2025-07-13 18:11:34 -07:00
parent dbc21e4a7a
commit 6feb1ff24d
3 changed files with 48 additions and 5 deletions

14
layouts/home.html Normal file
View File

@@ -0,0 +1,14 @@
{{ define "main" }}
<article class="h-full max-w-full flex flex-col items-center justify-center text-center">
<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 }}