This repository was archived by the owner on May 13, 2024. It is now read-only.

Description
The path for the frontmatter classifier pagination page is fixed on '/tag/'.
For example, if the frontmatters setting on the config file goes like this:
frontmatters: [
{
id: "tag",
keys: ['tag', 'tags'],
path: '/blogs/tag/',
frontmatter: { title: 'Tag' }
}
]
Let's say you have some blog posts with the tag 'theme'. Supposedly, the path to the page where all the posts with the tag 'theme' are listed should be '/blogs/tag/theme/'. But instead, it renders as 404 page.
While the path '/blogs/tag/' seems to render all the available tags just fine, the path '/blogs/tag/theme/' won't work. But through trial, I've noticed that this works on the path '/tag/theme/'.