fuelPHP/ViewParts分け

fuel/app/views/layout.php
echo $header;
echo $content;
echo $footer;

fuel/app/views/header.php
echo $title;

fuel/app/views/content.php
echo $content;

fuel/app/views/footer.php
echo $allRight;

fuel/app/classes/controller/origin.php
class Controller_Origin extends Controller{
	public function action_index()
	{
		$tag = array();
		$tag["title"] = "title";
		$tag["content"] = "content";
		$tag["allRight"] = "all right";
		
		$view = array();
		$view["header"] = View::forge("header", $tag);
		$view["content"] = View::forge("content", $tag);
		$view["footer"] = View::forge("footer", $tag);
		
		return View::forge("layout", $view);
	}
}