Hi,
I have converted my RDF/XML resume in JSON-LD. And now i’m trying to using it in GoHugo has data for generate a curriculum vitae page.
In my layout if i add :
{{ range $.Site.Data.documents.cv }}
{{ . }}
{{ end }}
I get the entire content of the JSON-LD. But if i want a particular value from a particular key, it doesn’t worked.
{{ range $.Site.Data.documents.cv }}
{{ .foaf:name }}
{{ end }}
I’m suppose it’s because of the prefixed namespace before the key, but i haven’t find no clue about how i’m suppose to do that.
Thanks for the help.