18 lines
303 B
PHP
18 lines
303 B
PHP
<?php
|
|
|
|
require_once __DIR__ . "/../model/AboutModule.php";
|
|
require_once __DIR__ . "/../view/View.php";
|
|
|
|
class MainController
|
|
{
|
|
public function actionIndex() {
|
|
echo(View::render([], 'index_tpl.php'));
|
|
}
|
|
|
|
|
|
public function actionNotFound()
|
|
{
|
|
echo (View::render([], '404.php'));
|
|
}
|
|
}
|