This super simple test is giving me difficulty if I plug in the following extremely simple JSON and template. How do I access "s.name"?
Template:
<p>{{s.name}}</p>
JSON:
{s:{name:"S"}}
I also tried this template - still won't work:
<p>
{{#s}}
{{name}}
{{/s}}
</p>
Am I missing something? How can I access s.name of the JSON?