13 lines
391 B
HTML
13 lines
391 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<div>
|
|
<h1>{{ .Name | lower }}</h1>
|
|
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
|
|
<ul>
|
|
{{ range .Pages }}
|
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
{{ end }}
|