layouts/_default/term.html (11 lines of code) (raw):
{{ define "main" }}
<h2>Pages having the <em>{{ .Title }}</em> tag</h2>
<p>See also the <a href="/tags.html">list of tags</a>.</p>
<ul>
{{ range .Data.Pages }}
<li>
<a href="{{.RelPermalink}}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}