Please forgive my ignorance. I’m not clear how that works?
If I were to loop through all posts with a given taxonomy term, would it be possible to exclude posts which had been “mounted” into another section (“Swansea” into “West Wales”)?
For example, the following would show the same posts from both “Swansea” and “West Wales” and duplicates from “Cardiff” and “South Wales”:
{{ range (index .Site.Taxonomies.groups $venue) }}
[ some HTML ]
{{ end }}
Because the list of “mounted” cities could be quite large, it seems wise to avoid explicitly naming the cities in the code, but rather hugo recognizes which post type to ignore.
Of course, if it isn’t possible, I’ll have to work around it.