feat: add Prettier with go-template and toml plugins, format all files

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-08 13:18:05 +02:00
parent b78bc26322
commit 436223913e
36 changed files with 1765 additions and 1178 deletions
+13 -15
View File
@@ -1,18 +1,16 @@
{{- 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 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>
<!-- Page content -->
<article class="gutter-x py-16 md:py-24 max-w-3xl prose-editorial">
{{ .Content }}
</article>
{{- end -}}