I want to display below on single loop
Tag 1
- article 1
- article 2
Tag 2
-article 3
-article 4
.
.
.
Tag N
article N
article N+1
I have tried like this to show the tag title
{{#get "tags"}} {{#foreach tags}} <p>{{name}}</p> {{/foreach}} {{/get}}
// it show perfectly the title of tag
I tried to put foreach inside foreach to display the post
{{#get “tags”}}
{{#foreach tags}}
{{name}}
{{#get “posts”}}
{{#foreach posts}}
{{title}}
{{/foreach}}
{{/get}}
{{/foreach}}
{{/get}}
But i get error (the tag title is ok) like aSyNcId.
Anyone can help me solve this problem?
Thanks