1
0
mirror of https://bitbucket.org/jsuto/piler.git synced 2025-02-03 17:08:36 +01:00
2012-02-08 23:14:28 +01:00

24 lines
310 B
PHP

<?php
class ControllerCommonNotfound extends Controller {
public function index(){
$this->id = "content";
$this->template = "common/not_found.tpl";
$this->layout = "common/layout";
$this->document->title = $this->data['title_not_found'];
$this->render();
}
}
?>