blob: 9f3ff8d0e6dcfea06ab875c0b7a249b1b9af2cab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{- define "main" }}
{{- if not .IsHome | and .Title }}
<header>
<h1>{{ .Title }}</h1>
{{- partial "breadcrumbs.html" . }}
{{- if .Params.Date }} <strong>{{ .Date.Format "2006-01-02" }}</strong>{{- end }}
</header>
{{- end }}
<main>
{{ .Content }}
</main>
{{- end }}
|