You can specify a different layout for your view file by specifying the following at the top of the search view: <?php fuel_set_var('layout', 'search_layout')?>
If you look in the fuel/modules/search/controllers/search.php controller file, you can see how it simply is just calling: $this->fuel->pages->render('search', $vars); FUEL allows you to set the layout both by passing a $vars['layout'] value OR by setting it in the view file that is being rendered.
Comments
<?php fuel_set_var('layout', 'search_layout')?>
$this->fuel->pages->render('search', $vars);
FUEL allows you to set the layout both by passing a $vars['layout'] value OR by setting it in the view file that is being rendered.