I have a new site I've recently started using Grav v1.5.0-beta.2 with. I'm using a custom theme that is just a few changes and inherits the Quark theme.
My site.yaml has the default taxonomies set for category and tag:
taxonomies:
- category
- tag
I have a bunch of "item" pages that have some taxonomy front-matter:
---
taxonomy:
category:
- Woodworking
tag:
- toys
- boats
---
But when I click on any of the tags in the pages, which take me to URLs such as "/tag:toys", I always get zero results.
If I use the links on blog pages in the sidebar, I see that the URL is restricted to the category they are in, so "/woodworking/tag:boats", and that seems to work.
How can I get the tag URLs to work across the whole site?
Working:

Not working:

My site hierarchy is as follows. It's not a classic blog, so there isn't just a single chronological stream of posts. I'm trying to create a personal notes site.
.
├── 01.home
│ └── default.md
├── 02.woodworking
│ ├── blog.md
│ ├── toy-boat-1
│ │ └── item.md
│ └── toy-boat-2
│ └── item.md
├── 03.modelling
│ ├── 01.chieftain
│ │ └── item.md
│ └── blog.md
└── 04.workshop
├── 01.wood-tools
│ ├── blog.md
│ ├── lathe-tools
│ │ └── item.md
│ └── mini-lathe
│ └── item.md
├── 02.wishlist
│ ├── 01.chip-extraction
│ │ └── item.md
│ ├── 02.sharpening
│ │ └── item.md
│ └── blog.md
└── blog.md