如何获取ghost中post.hbs页面上的所有帖子

时间:2016-12-09 10:41:54

标签: ghost-blog ghost

我想在post.hbs上发布所有帖子,但它没有显示任何帖子列表,我想用我的字符串检查标题并在post.hbs上显示特定帖子。

下面的代码在post.hbs中不起作用

{{#foreach posts}}
     <p>{{content}}</p>
{{/foreach}}`

它不在post.hbs页面上工作

1 个答案:

答案 0 :(得分:1)

Post.hbs用于显示特定帖子,因此您位于{{post}}范围:

{{#post}}
{{/post}}

您可以尝试这样的事情:

{{#get "posts" limit="all" as |allposts| }}
    {{#foreach allposts}}
       {{content}}
    {{/foreach}}
{{/get}}