include tag will parse the tag to include other templates from the template.
Nest of include tag is not possible. (It will be ignored)
{{ @include template_file }}
$assign['sample_sub1_echo1'] = 'sub-template1';
Template :
{{ @include SubTemplate.tpl }}
SubTemplate.tpl :
{{ sample_sub1_echo1 }}
sub-template1