Hello,
I try to render all taxonomies on a single page to use jQuery with a slider for browsing. I do this with a partial
{{- range $name, $taxonomy := .Site.Taxonomies -}}
<section class="taxonomy {{ $name }}">
{{ $page := how can I iterate over each page within $name texnonomy? }}
<div class="taxnonomy_content">
<h1>{{ $page.title }}<h1>
{{ $page.content - how can I render the texnonomy page content? }}
</div>
{{ end }}
</section>
{{- end -}}
I’m using the list template also, but I need here a rendering on a single page
Thanks