cookbook/themes/hugo-bulma-cookbook/layouts/_default/taxonomy.html

12 lines
294 B
HTML
Raw Normal View History

{{ 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>