Hi, I am using the below code to list all the categories of post having type blog
{{range $name, $taxonomy := where .Site.Taxonomies.categories "Type" "blog" }}
<li><a href="{{ "/blog/categories/" | relLangURL }}{{ $name | urlize }}">{{ humanize $name }}</a></li>
{{ end }}
I am able to get the list of blogs filtered by categories at /categories/category-name.
How can I get this list at example.com/blog/categories/category-name ?