Parent

The parent helper sets the scope of the inner block to the page data for the parent; if a parent does not exist the block is not rendered.

Example

This is typically used to render a link up to a parent folder:

{{#parent~}}
<a href=".." title="{{title}}">Back to {{title}}</a>
{{~/parent}}

Renders as:

<a href=".." title="Helpers">Back to Helpers</a>

Back to Helpers