public function action_index()
{
$view = View::factory('welcome/index');
$view->set(
array(
'title' => 'My Fuel',
'name' => '<span>Jesus</span>',
'partial' => View::factory('welcome/partial')->render() // Render seems optional ???
),
NULL,
FALSE
);
$this->response->body = $view;
}
It looks like you're new here. If you want to get involved, click one of these buttons!