Using Content Adapters to Add Pages- Nested Structure

I see, location would indeed seem to be the only useful taxonomy term in this example.

    // Add taxonomies
    {{ $params := dict }}
    {{ range $key, $value := . }}
        {{ if eq $key "location" }}
            {{ $taxonomy := printf "%ss" $key }}
            {{ $params = merge $params (dict $taxonomy $value) }}
        {{ end }}
    {{ end }}
  
    // Hide taxonomy subpages from the sidebar
    {{ $params = merge $params (dict "toc_hide" true) }}

So I assume I could just build this logic at each level of the hierarchy for the loops. Again thank you for the help here!

1 Like