This is a small scalable web site framework for PHP5.
License: free for personal use, USD $50 for commercial use.
Example of a source code of a typical nmini∙inc page:
<?php include_once 'inc/inc.php';
html::$title = 'Title';
new inc('html')?>
Page content
You can extend the framework using your own simple classes:
<?php
class your_own_feature {
static function header() // Header code
{}
static function meta() // HTML meta tags and other code
{}
static function head() // Page header
{}
static function foot() // Page footer
{}
}
?>
To enable this class, add a class name to the feature list:
new inc('html,your_own_feature');
This framework is a result of more than 10 years of development of many web sites and programming research. There were about 50 internal versions before we have published it. The latest version is as simple as possible. The source code size was dramatically decreased.

nmini.inc.zip