Steps to create the simplest module:
- Create module subdirectory in modules
- Create index.html or index.php inside created directory with any content
- Go to Administration >> Components >> Modules
- Click Update modules list, created module will appear in modules list
- Install module
- Enable module
- Click on module name, appeared in main menu
- That's it! You have created module for CleverStyle Framework
Note: if you want to create module with php file, output should be done in next way:
<?php
$Page = \cs\Page::instance();
$Page->content('Some content here');
Any other output will be ignored.