How to call all post by tag

<section class="posts">
	<div class="post-feed">
        {{#foreach posts}}
                {{> "post-card"}}

        {{/foreach}}
    </div>

</section>

so displays all the posts and how to do that would cause only posts on the tag

From what I can tell you’d like to have a list of posts with a specific tag?

You can achieve this with our dynamic routing feature - docs here: Ghost Themes - Dynamic URLs & Routing

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.