11 lines
154 B
PHP
11 lines
154 B
PHP
<?php
|
|
|
|
class HomeController extends BaseController {
|
|
|
|
public function display($f3){
|
|
|
|
$this->renderView('views/home.html');
|
|
|
|
}
|
|
// ...
|
|
} |