website-theme/layouts/_default/list.html
2023-09-26 15:54:37 -04:00

11 lines
No EOL
264 B
HTML

{{ define "main" }}
{{ partial "header.html" . }}
<!-- content -->
<main class="h-entry">
{{ .Scratch.Set "beforeDateString" "Published on "}}
{{ partial "date.html" . }}
<div class="e-content">
{{ .Content }}
</div>
</main>
{{ end }}