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

17 lines
199 B
PHP

<?php
class ControllerCommonLayoutempty extends Controller {
protected function index() {
$this->template = "common/layout-empty.tpl";
$this->render();
}
}
?>