How to display categories only, with the code below. please
{{ $params := .Params }}
{{ range $key, $value := $.Site.Taxonomies }}
{{ if isset $params $key }}
<span>
<a href="{{ "https://www.example.net/" | absURL }}{{ $key | urlize }}/">{{ $key | upper }}</a>
</span>
<ul>
{{ range (index $params $key) }}
<li><a href="{{ "https://www.example.net/" | absURL }}{{ $key | urlize }}/{{ . | urlize }}/">{{ . }}</a></li>
{{ end }}
</ul>
{{ end }}
{{ end }}
Thank you in advance