grannysmith-technical/layouts/_default/taxonomy.html

12 lines
320 B
HTML
Raw Normal View History

2023-08-09 17:27:08 +00:00
{{ 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 }}