12 lines
294 B
HTML
12 lines
294 B
HTML
|
{{ partial "header.html" . }}
|
||
|
{{ partial "hero.html" . }}
|
||
|
|
||
|
<main>
|
||
|
<div>
|
||
|
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
|
||
|
{{ range .Pages }}
|
||
|
{{ .Render "tags"}}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</main>
|