2023-08-09 17:27:08 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<main>
|
|
|
|
<div>
|
2023-08-09 22:15:35 +00:00
|
|
|
<h1>{{ .Name | lower }}</h1>
|
2023-08-09 17:27:08 +00:00
|
|
|
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
|
2023-08-09 22:15:35 +00:00
|
|
|
<ul>
|
|
|
|
{{ range .Pages }}
|
|
|
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2023-08-09 17:27:08 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|