I have the following taxonomy in my front matter:
+++
tags = ["A", "B", "C"]
+++
I would like to render all tags except tag “C”.
So in layout > taxonomy > tag.html
I don’t want to generate the page /tags/c/
. If I write a conditional such as, {{if ne .URL "/tags/c/"}}
no content is generated, but the page still exists.
Is it possible to exclude a taxonomy page from being generated like using dissableKinds = ["taxonomyTerm"]
in config?
Happy holidays!