2025-01-15 16:57:03 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use kernel\App;
|
|
|
|
|
|
|
|
|
|
|
|
App::$collector->get('/', [\kernel\themes\default\controllers\MainController::class, 'actionIndex']);
|
2025-01-16 16:14:43 +03:00
|
|
|
App::$collector->get('/about', [\kernel\themes\default\controllers\MainController::class, 'actionAbout']);
|
2025-01-15 16:57:03 +03:00
|
|
|
//App::$collector->get('/page/{page_number}', [\app\modules\tag\controllers\TagController::class, 'actionIndex']);
|
|
|
|
//App::$collector->get('/create', [\app\modules\tag\controllers\TagController::class, 'actionCreate']);
|
|
|
|
|
|
|
|
|
|
|
|
|