I want to be able to use the each helper on this json but I cant get the children arrays to display. I've tried everything but nothing works. I'm new to this but its just frustrating to be stuck on this part
html
<head>
<title>tally</title>
</head>
<body>
<h1>Welcome to Meteor!</h1>
{{> hello}}
{{#each artist }}
<h2>{{ name }}</h2>
<h3>{{ proDate }}</h3>
<b>Songs</b>: {{#each video}}
{{songs}}
{{/each}}
{{/each}}
</body>
javascript
if (Meteor.isClient) {
Template.body.helpers({
artist: [
{
"name": "El Alfa",
"proDate": 2008,
"albums": 0,
video: [{
"song": "Muevete Jevi",
"youtube": "https://www.youtube.com/embed/bnlW-42_Sfs"
}]
}]
});
}