{{ define "main" }}
{{- $parents := .Params.Topics -}} {{- $mainWidth := or (and $parents "8") "12" -}}
{{ if .Title -}}

{{ .Title }}

{{- end }}

{{ .Content }}

{{ partial "parent-topics.html" . }}
{{ $section := or .Section .Site.Params.homeSection "posts" }} {{ $paginator := .Paginate (where .Site.RegularPages "Section" $section) }} {{ range $paginator.Pages }} {{ partial "card" . }} {{ end }}
{{ partial "pagination.html" . }}
{{ end }}