11 lines
320 B
HTML
11 lines
320 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<div>
|
|
<h1>{{ .Title }}</h1>
|
|
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
|
|
{{ range .Pages }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
{{ end }}
|