I have the following structure
data
songcollection
song1.yaml
song2.yaml
Inside each yaml-file i have:
title
description
source
In the partial “songlist.html”:
{{ range .Site.Data.songcollection . }}
{{ end }}
Now in a static site, i need the songlist:
content
song.md
Then i tried it with shortcodes.
But nothing is working.
So - How can i get the data-output on song.md?
Thanks