2026-04-08 19:49:15 +02:00
|
|
|
{{- define "main" -}}
|
2026-05-08 13:18:05 +02:00
|
|
|
<!-- Page header -->
|
|
|
|
|
<header class="gutter-x pt-36 pb-16 border-b border-mist">
|
2026-05-09 11:25:27 +02:00
|
|
|
<div class="max-w-2xl">
|
2026-05-08 13:18:05 +02:00
|
|
|
<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>
|
2026-04-08 19:49:15 +02:00
|
|
|
|
2026-05-08 13:18:05 +02:00
|
|
|
<!-- Page content -->
|
|
|
|
|
<article class="gutter-x py-16 md:py-24 max-w-3xl prose-editorial">
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
</article>
|
2026-04-08 19:49:15 +02:00
|
|
|
{{- end -}}
|