Hi,
i dont know if i got you right but you can render any template you want:
within the controller:
$content = this->view->render('whatever');
Return $content
Or (ugly)
$content = this->view->render('whatever');
Echo $content
Exit;
Cheers,
Nikolas