kobezzza,
А может шаблон собираться из разных файлов.
html.ss
{template html(@param)}
{/}
header.ss
{template header(@param)}
{/}
main.ss
{include 'html.ss'}
{include 'header.ss'}
{template main(param) extends html}
{block header}
{super}
{/}
{/template}
Или только proto и apply?