hugo-test-site/layouts/_default/single.html

10 lines
181 B
HTML
Raw Normal View History

2024-06-06 21:01:40 -07:00
{{ define "main" }}
<header>
<h1>{{ .Title }}</h1>
{{ if .Date }}
<time>{{ .Date | time.Format "2006.01.02" }}</time>
{{ end }}
</header>
{{ .Content }}
{{ end }}