Rendering page content on another page

I’m having a basic problem of not being able to display page content on another page. In a page .md file I have this:

process:
    markdown: true
    twig: true
---
{{ page.find('/05.test').content }} 

But it’s not rendering the ‘test’ page content. What am I doing wrong?

@skipper, Try leaving out the number. The parameter of find is a url not the folder name.

See Grav API | Grav Documentation

find( string $url , bool $all=false )

You should also add the |raw filter, else the content will be auto-escaped.

{{ page.find('/typography').content | raw }}

That’s it. Thank you!