1{{ define "main" }}
2 {{ $data := .Data }}
3 <article class="cf pa3 pa4-m pa4-l">
4 <div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray">
5 {{ .Content }}
6 </div>
7 </article>
8 <div class="mw8 center">
9 <section class="ph4">
10 {{ range $key, $value := .Data.Terms }}
11 <h2 class="f1">
12 <a href="{{ "/" | relLangURL }}{{ $.Data.Plural | urlize }}/{{ $key | urlize }}" class="link blue hover-black">
13 {{ $.Data.Singular | humanize }}: {{ $key }}
14 </a>
15 </h2>
16 {{ range $value.Pages }}
17 {{ partial "summary.html" . }}
18 {{ end }}
19 {{ end }}
20 </section>
21 </div>
22{{ end }}