{{ define "main" }}

All {{ .Title }}

{{ if .Description }}

{{ .Description }}

{{ end }} {{ .Content }}
{{ $activeCategory := lower .Title }} {{ $products := where .Site.RegularPages "Section" "products" }} {{ $filtered := where $products "Params.categories" "intersect" (slice $activeCategory) }} {{ $sorted := sort $filtered "Date" "desc" }} {{ partial "content/products/collections/list.html" (dict "list" $sorted) }}
{{ end }}