Is it possible to only range through a limited amount of taxonomy? I’m only trying to display a certain number of taxonomy and then including a link to “view all categories”. I currently have the below code:
{{ range $name, $taxonomy := $.Site.Taxonomies.categories }}
<li>
<a href="/categories{{ $name | urlize | relURL }}">{{ $name | humanize }}</a>
</li>
{{else}}
<p>No blog categories just yet</p>
{{ end }}