grannysmith-technical/layouts/_default/taxonomy.html

14 lines
391 B
HTML
Raw Normal View History

2023-08-09 17:27:08 +00:00
{{ define "main" }}
<main>
<div>
<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 -->
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
2023-08-09 17:27:08 +00:00
</div>
</main>
{{ end }}