Thank for your help. I found other solution. In view my code is:
{{ include_raw('path_to_my_view') }}
include_raw code is:
$view->registerEngines(array(
'.volt' => function($view, $di) {
$volt = new \Phalcon\Mvc\View\Engine\Volt($view, $di);
$volt->setOptions(array(
'compiledPath' => '../app/compiled/',
'compileAlways' => true
));
$compiler->addFunction('include_raw', function($resolvedArgs, $exprArgs) use ($view) {
return sprintf('file_get_contents("%s" . %s)', $view->getViewsDir(), $resolvedArgs);
});
return $volt;
}
));