I've read over some similar questions but I'm still stuck.
I have an array that looks like this:
[{"get_all_user_blogs": "(3,\"<p>Random Blog</p>\n\",\"<p>Blah</p>\n\")"}]
and the array is of length 2 but will obviously grow over time. I can loop over the array but I'm unsure how to extract the three variables in the object. I'm completely stuck on what I need to do. The Handlebars template receives the array as a parameter.
Edit: Here is the code that returns the three elements.
<ul>
{{#each blog_list}}
{{#each this}}
<li><a href="/cp/blog/update/{{@../key}}/">{{this}}</a></li>
{{/each}}
{{/each}}
</ul>
But if try to use:
{{this[0]}}
it doesn't work as I would expect.