Sometimes you will want to split a single template into multiple pieces. You can
render these "partial" template pieces using the render()
method in your main
template code.
When rendering, you can pass an array of variables to be extracted into the
local scope of the partial template. (The main $this
Template variable will
always be available regardless.)
For example, a list
partial template might look like this:
<ul>
{{ foreach ($items as $item): }}
<li>{{h $item}}</li>
{{ endforeach }}
</ul>
Then in a main browse
template, you can render the partial list
:
<p>My List</p>
{{= render ('list', [
'items' => 'foo', 'bar', 'baz']
]) }}
The rendered HTML will look something like this:
<p>My List</p>
<ul>
<li>foo</li>
<li>bar</li>
<li>baz</li>
</ul>