Files
pivoine.art/layouts/_default/single.html

19 lines
475 B
HTML
Raw Normal View History

2025-11-29 17:51:00 +01:00
{{ 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 }}