Variable Only Print First Time In The Loop

I Am Trying To Get All Posts Information By Tags,

 {{#get "tags"}}
  {{#foreach tags}}
	 {{#get "posts" include="tags,authors" filter="tags:{{name}}" }}
	  <ul>
       {{#foreach posts}}
          <li>{{title}}</li>
        {{/foreach}}
       {{/get}}
       {{/foreach}}
	</ul>
   {{/get}}
 {{/get}}

Here I Expect All Posts Title Within All Tags, But Showing Only Last One Tags Post Title

How Can I Get All Posts By Tags Loop?

When filtering you should use a tags slug property

So you can change filter="tags:{{name}}" to filter="tags:{{slug}}" and this should achieve what you want! :relaxed: