2015-03-08 14:02:59 -03:00
|
|
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
|
|
|
|
// Boot rules
|
|
|
|
include(PATH_RULES.'70.build_posts.php');
|
|
|
|
include(PATH_RULES.'70.build_pages.php');
|
|
|
|
include(PATH_RULES.'80.plugins.php');
|
2015-03-27 01:00:01 +00:00
|
|
|
include(PATH_RULES.'99.header.php');
|
2015-05-05 01:00:01 +00:00
|
|
|
|
|
|
|
// Theme init.php
|
|
|
|
if( Sanitize::pathFile(PATH_THEMES, $Site->theme().'/init.php') )
|
|
|
|
include(PATH_THEMES.$Site->theme().'/init.php');
|
|
|
|
|
|
|
|
// Theme HTML
|
|
|
|
if( Sanitize::pathFile(PATH_THEMES, $Site->theme().'/index.php') )
|
2015-05-30 22:06:55 -03:00
|
|
|
include(PATH_THEMES.$Site->theme().'/index.php');
|