taxonomy.html Example
{{ define "main" }}
<article>
<div>
<p>Below you will find pages that utilize the taxonomy term “{{ .Title }}”</p>
</div>
</article>
<div>
{{ $section := .Data.Pages }}
<section>
{{ range $section }}
<div>
{{ partial "summary" . }}
</div>
{{ end }}
</section>
</div>
{{ end }}