mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 20:41:59 +01:00
24 lines
310 B
PHP
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();
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
?>
|