18 lines
427 B
HTML
18 lines
427 B
HTML
{{- define "main" }}
|
|
{{- if not .IsHome | and .Title }}
|
|
<header>
|
|
<h1>{{ .Title }}</h1>
|
|
{{- partial "breadcrumbs.html" . }}
|
|
</header>
|
|
{{- end }}
|
|
<main class="cards">
|
|
{{- if .Content }}
|
|
<div class="intro">
|
|
{{ .Content }}
|
|
</div>
|
|
{{- end }}
|
|
{{- range .Pages }}
|
|
{{ partial "card.html" . }}
|
|
{{- end }}
|
|
</main>
|
|
{{- end }}
|