Hi
In my frontmatter, I have a params with / backslash for a reason.
Looks like this:
+++
date = 2022-03-29T16:00:00Z
"post/tags" = ["tag1"]
title = "Ttile"
+++
I want to display all tags on every page. I’m not sure how to use the “link/tags” on a loop.
I know displaying all tags could something like this
{{range $name, $taxonomy := .Site.Taxonomies.tags}}
<div>...</div>
{{ end }}
But now, I have “post/tags” as the key. I’m not sure how to use it in range.
Thanks