Nitro 2.x added a new feature "patterns with children". That feature allows us to render components on templates very clean.
Please add an integration to support this feature as well. :)
Because the example from the Nitro documentation is not very self-explanatory, see the following explanation/examples:
Generally this Nitro feature is about replacing the {{{children}}} element with arbitrary markup.
On the layout there will be a nested call of a pattern. Everything in between the pattern element get's inserted in the {{{children}}} element.
Example 1
Frontend implementation without the children element
handlebars file:

layout file:

Frontend implementation with the children element
handlebars file:

layout file:

Example 2
The pattern can also be used in a advanced way like the following example:

Nitro 2.x added a new feature "patterns with children". That feature allows us to render components on templates very clean.
Please add an integration to support this feature as well. :)
Because the example from the Nitro documentation is not very self-explanatory, see the following explanation/examples:
Generally this Nitro feature is about replacing the
{{{children}}}element with arbitrary markup.On the layout there will be a nested call of a pattern. Everything in between the pattern element get's inserted in the
{{{children}}}element.Example 1
Frontend implementation without the children element
handlebars file:
layout file:
Frontend implementation with the children element
handlebars file:
layout file:
Example 2
The pattern can also be used in a advanced way like the following example:
