I'm banging my head over this. So I have the taxonomyList plugin producing a tag cloud. Their template is:
{% if taxlist %}
<div class="tags">
{% for tax,value in taxlist[taxonomy] %}
{% set active = uri.param(taxonomy) == tax ? 'active' : '' %}
<a class="{{ active }}" href="{{ base_url }}/{{ taxonomy }}:{{ tax }}">
{{ tax }}
</a>
{% endfor %}
</div>
{% endif %}
On my local machine this produces the url http://localhost:8888/tag:example
This just produces a 404 for me.
I call it in a separate /tags page that lists all the tags on the site. This example was taken from the antimatter theme's sidebar.
{% if config.plugins.taxonomylist.enabled %}
{% include 'partials/taxonomylist.html.twig' with {'base_url':new_base_url, 'taxonomy':'tag'} %}
{% endif %}
My question is how does this work and can Grab create the required pages for this?