Graeme Paul
Graeme Paul

Reputation: 1153

Ghost CMS show page excerpt on another page

I have created a home template and I Was wondering if its possible to show a excerpt and image from the About page for example. I've been looking at the documentation to no success.

I was hoping to do something like this:

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

Upvotes: 0

Views: 296

Answers (1)

Daniel
Daniel

Reputation: 171

You can query posts that are pages, so this should work:

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

Upvotes: 1

Related Questions