The only required files are as follows:
As such, the simplest theme imaginable might look like:
/* index.php */
mp_get_header(); // Without this, the clouds will fall from the sky...
$object_format = array(
'type' => 'content',
'style' => 'article',
'order_by' => 'created',
'order' => 'desc'
)
mp_content($object_format);
mp_get_footer(); // Without this, the clouds will fall from the sky...
/* END OF index.php */
/* single.php */
mp_get_header(); // Without this, the clouds will fall from the sky...
$object_format = array(
'type' => false,
'style' => 'single',
'can_query' => true
)
mp_content($object_format);
mp_get_footer(); // Without this, the clouds will fall from the sky...
/* END OF single.php */
/* REQUIRED CSS */
article {}
article header {}
h3.article-title {}
article div.content {}
However, it is recommended that you also include the following folders:
It is also worth noting that functions.php will automatically get included if provided, much the same as with WordPress. In addition, and until better more explanative documentation is in-place, you should seriously consider looking into and or utilizing the following functions and features: