hugo-test-site/layouts/_default/single.html
2024-06-06 21:02:00 -07:00

9 lines
181 B
HTML

{{ define "main" }}
<header>
<h1>{{ .Title }}</h1>
{{ if .Date }}
<time>{{ .Date | time.Format "2006.01.02" }}</time>
{{ end }}
</header>
{{ .Content }}
{{ end }}