blog/themes/conspiracy/layouts/_default/list.html
2023-03-19 00:53:31 +01:00

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 }}