Hi everyone,
I am quite new to Hugo, so I apologize in advance if I am going to ask you something that has already been asked.
I managed to sort and paginate my tags in a list as follow;
{{- range $pages.PageGroups -}}
{{- range .Pages -}}
<a href="{{ .RelPermalink }}" class="archive-item-link">
{{- .Title -}}
</a>
{{- end -}}
{{- end -}}
{{- partial "paginator.html" . -}}
I am also trying to add the number of occurrences. I can do that with:
{{- range $.Site.Taxonomies.tags.ByCount -}}
<a href="{{ .Page.RelPermalink }}">{{ .Page.Title }} (<b>{{ .Count }}</b>)</a>
{{- end -}}
{{- partial "paginator.html" . -}}
but the latter will not paginate. Do know know/have any reference for doing that?
Thanks in advance for your time and help.
Emiliano