| 123456789101112131415161718 | {{ partial "header.html" . }}<main id="content" role="main"><article class="tagindex">	<header>		<h1>{{ .Title }}</h1>	</header>	<ul class="postlist">		{{ $data := .Data }}		{{ range $key, $value := .Data.Terms }}		<li><a class="reference listtitle" href="/{{ $data.Plural }}/{{ $key | urlize }}.html">{{ $key }}</a> ({{ len $value }})</li>		{{ end }}	</ul></article></main>{{ partial "footer.html" . }}
 |