Ghost CMS 在另一页上显示页面摘录

Ghost CMS show page excerpt on another page

我创建了一个主页模板,我想知道是否可以显示来自“关于”页面的摘录和图像。我一直在查看文档,但没有成功。

我希望做这样的事情:

   {{#get "pages"}}
    {{#foreach pages}}
        {{title}}
        <p>{{excerpt words="33"}}</p>
    {{/foreach}}
{{/get}}

您可以查询作为页面的帖子,所以这应该有效:

{{#get "posts" filter="page:true"}}
  {{#foreach posts}}
    {{title}}
    <p>{{excerpt words="33"}}</p>
  {{/foreach}}
{{/get}}