Child template
{>base_template/}
{#loop}
{<"var_{$idx}"}
{/"var_{$idx}"}
{/loop}
Base template
{#anotherloop}
{+"var_{$idx}"}
{#anotherloop}
for instance looping a list of items and each iteration of the item in a child template creates a different inline partial block ,
so this means a array.list of inline partial blocks can be created as we iterated.
Once created, we can reference the indexed inline partial block in the base template
is this good?