blog/themes/conspiracy/layouts/list.html
2025-06-30 14:48:34 +02: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 }}