mckaygerhard 76a08633c1 main home and css style, default main routes, controllers and api
* main api entry template
* main controllers for routers
* use bulma css for eye candy style
* proposed minimal menu html structure into index
* add those routes to modules ini
* dont ignore css files we will not use nodejs
2024-04-09 18:00:08 -04:00

17 lines
261 B
PHP

<?php
/**!
* @package skindb-webdb
* @filename lists.php controller
* @route >lists
* @version 1.0
*/
class lists_controller extends controller {
public function execute($post = null) {
$this->model->show();
return;
}
}