Files
caldwell/layouts/_default/single.html
Nikolaos Karaolidis 3938d190d5 Add comments
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-09-14 19:40:37 +01:00

14 lines
312 B
HTML

{{ define "main" }}
<main>
{{ partial "components/hero/index.html" . }}
<div class="content">
{{ .Content }}
{{ if (default true .Params.comments) }}
{{ partial "comments.html" . }}
{{ end }}
</div>
{{ partial "components/postnav/index.html" . }}
</main>
{{ end }}