Hello I have an external json and I would like to have access to “year” stored in an array named “data”.
{{ $externalurl := getJSON “https://script.blablabla.com/feed” }}
-
{{ range $externalurl.data}}
- {{ .year }} {{ end }}
This is not working Where and how should I put “data” ?
Thx