website-theme/layouts/_default/list.html

12 lines
No EOL
296 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>
{{ partial "footer.html" . }}
{{ end }}