Hi all,
I made two custom taxonomies (“blog” and “projekte”), which I want to list in my overview. Last time (back in June or so) I edited my hugo project {{ .Site.Taxonomies.blog }}
was giving me a list of all “blog”-taxonomies. Now I get empty results:
{{ range .Site.Taxonomies }}
{{ . }}
{{ end }}
gives me:
map[] map[]
and so
{{ range .Site.Taxonomies.blog }}
{{ . }}
{{ end }}
gives me nothing.
part with taxonomies in config.toml:
[taxonomies]
blog = "blog"
projekte = "projekte"
I updated Hugo to v0.57.2 or tried to access {{ .Site.Taxonomies.blog }}
in different templates in my theme, but it didn’t make any difference.
Other .Site
variables like .Site.Params
are working. I couldn’t find anything similar to that problem. I have no idea where to start from…