{{ $sections := .Page.Resources.Match "sections/*md" }}
{{ range $index, $section := $sections }}

{{ add $index 1 }}

{{ $section.Title }}

{{ $section.Content }}
{{ if $section.Params.quote }}
{{ $dashed_author := printf "— %s" $section.Params.quote_author }}

{{ $section.Params.quote | markdownify }}”

{{ $dashed_author | markdownify }}
{{ end }}
{{ end }}