Initial commit

This commit is contained in:
2025-11-29 17:51:00 +01:00
commit 694a7047a4
66 changed files with 5105 additions and 0 deletions

18
layouts/_default/single.html Executable file
View File

@@ -0,0 +1,18 @@
{{ define "main" }}
<article class="py-16">
<div class="container-narrow">
<header class="mb-12">
<h1 class="text-4xl font-medium tracking-tight">{{ .Title }}</h1>
{{- if not .Date.IsZero }}
<time class="text-text-muted text-sm mt-2 block">
{{ .Date.Format "January 2, 2006" }}
</time>
{{- end }}
</header>
<div class="prose prose-invert prose-lg max-w-none">
{{ .Content }}
</div>
</div>
</article>
{{ end }}