WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
require('../../config.php');require_once(WB_PATH.'/framework/class.admin.php');$admin = new admin('Dashboard','dashboard');// Setup template object$template = new Template(THEME_PATH.'/templates');$template->set_file('page', 'dashboard.htt'); <--------- with a simple html in it..$template->set_block('page', 'main_block', 'main');// Insert values into the template object$template->set_var(array( 'SOMETHING' => 'Hi', 'TEST' => 'Testing this..' ) );// Parse template object$template->parse('main', 'main_block', false);$template->pparse('output', 'page');// Print admin footer$admin->print_footer();