I have created in data/
a toml file topics.toml
to hold more metadata for taxonomy topic
, example:
[events]
description="Lorem ipsum events."
[process]
description="Lorem ipsum process."
[projects]
description="Lorem ipsum projects."
In taxonomy/topic.terms.html
template, I have the following:
{{ $data := .Data }}
{{ range $key, $value := .Data.Terms }}
<div><a href="/{{ $data.Plural }}/{{ $key | urlize }}">{{ $key }}</a></div>
{{ end }}
How do I add the description into taxonomy/topic.terms.html
? What should be in place of SomethingSiteDataTopicsCall
?
{{ $data := .Data }}
{{ range $key, $value := .Data.Terms }}
<div><a href="/{{ $data.Plural }}/{{ $key | urlize }}">{{ $key }}</a>
<br />
{{ SomethingSiteDataTopicsCall.description}}
</div>
{{ end }}
My apologies for asking rudimentary questions. Still a learning newbie.