getTag('BLOG_LANGUAGE') . '/strings.php'); sb_language( 'index' ); // ------------- // POST PROCESSING // ------------- /* Validate your GET and POST data here... */ // ----------- // PAGE CONTENT // ----------- /* Page Content ---------- Your actual page content will go INSIDE the page_content() function below. This function gets called from inside the theme_pagelayout() function at the bottom of this file... */ function page_content() { /* Page Content ---------- If you want your content to be wrapped inside the normal "Entry" box, then use the $entry_array associative array to pass your content to the theme_staticentry() function located in themes/{theme_name}/themes.php */ $entry_array = array(); $entry_array[ 'subject' ] = 'Subject Line'; $entry_array[ 'entry' ] = 'Body Content
Google'; echo( theme_staticentry( $entry_array ) ); // HTML Content // ---------- // You can also break out of PHP here and use HTML: ?> Here is some raw HTML content...

-- Alex. setTag('{PAGE_TITLE}', $blog_config->getTag('BLOG_TITLE').' - '.$GLOBALS['lang_string']['title']); /* Generate Page ----------- The function below is what actually starts outputting all of the dynamic content. Including the tags, the menus, the content, etc... This function calls the page_content() function above... Refer to themes/{theme_name}/themes.php for more details. */ // Theme Layout ob_start(); theme_pagelayout(); $page_template->setTag('{BODY}', ob_get_clean()); // Final Output $output = $page_template->getHTML(); echo($output); ?>