This commit is contained in:
2025-07-08 17:26:13 -07:00
parent 78f38034ce
commit 0000fc7d22
67 changed files with 6140 additions and 243 deletions

19
layouts/home.html Normal file
View File

@@ -0,0 +1,19 @@
{{ define "main" }}
<article class="max-w-full flex flex-col items-center justify-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>
<section>
{{ partial "recent-articles/main.html" . }}
</section>
<footer class="pt-8">
</footer>
</article>
{{ end }}