Initial commit

This commit is contained in:
2026-04-08 19:49:15 +02:00
commit cd1ff989d0
52 changed files with 3277 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{{- define "main" -}}
<!-- Page header -->
<header class="gutter-x pt-36 pb-16 border-b border-mist">
<div class="max-w-3xl">
<h1 class="font-display text-5xl md:text-7xl text-paper text-balance mb-5">{{ .Title }}</h1>
{{- with .Description -}}
<p class="text-chalk text-xl leading-relaxed text-pretty">{{ . }}</p>
{{- end -}}
</div>
</header>
<!-- Page content -->
<article class="gutter-x py-16 md:py-24 max-w-3xl prose-editorial">
{{ .Content }}
</article>
{{- end -}}