19 lines
475 B
HTML
Executable File
19 lines
475 B
HTML
Executable File
{{ 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 }}
|