I’m trying to configure my site to have 2 collections as shown in the code below:
routes:
collections:
/:
permalink: /{slug}/
template: index
/anime/:
permalink: /anime/{primary_tag}/{slug}/
template: index
filter: tag:hash-anime
data: tag.anime
/manga/:
permalink: /manga/{primary_tag}/{slug}/
template: index
filter: tag:hash-manga
data: tag.manga
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
I’ve already created all the tags that I think are necessary, follow the list below of created tags:
- anime
- manga
- #manga
- #anime
But it’s not working. Am I doing something wrong?