'; // Please don't index these Mr Robot. if (!empty($context['robot_no_index'])) echo ' '; // The ?b21 part of this link is just here to make sure browsers don't cache it wrongly. echo ' '; /* Internet Explorer 4/5 and Opera 6 just don't do font sizes properly. (they are big...) Thus, in Internet Explorer 4, 5, and Opera 6 this will show fonts one size smaller than usual. Note that this is affected by whether IE 6 is in standards compliance mode.. if not, it will also be big. Standards compliance mode happens when you use xhtml... */ if ($context['browser']['needs_size_fix']) echo ' '; // Show all the relative links, such as help, search, contents, and the like. echo ' '; // If RSS feeds are enabled, advertise the presence of one. if (!empty($modSettings['xmlnews_enable'])) echo ' '; // If we're viewing a topic, these should be the previous and next topics, respectively. if (!empty($context['current_topic'])) echo ' '; // If we're in a board, or a topic for that matter, the index will be the board's index. if (!empty($context['current_board'])) echo ' '; // We'll have to use the cookie to remember the header... if ($context['user']['is_guest']) $options['collapse_header'] = !empty($_COOKIE['upshrink']); // Output any remaining HTML headers. (from mods, maybe?) echo $context['html_headers'], ' '; echo ' '; } function template_body_above() { global $context, $settings, $options, $scripturl, $txt, $modSettings; echo '
'; echo '
'; theme_linktree2(); } function template_body_below() { global $context, $settings, $options, $scripturl, $txt; echo '

'; // Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere! echo ' '; // Show the load time? if ($context['show_load_time']) echo ' ', $txt['page_created'], $context['load_time'], $txt['seconds_with'], $context['load_queries'], $txt['queries'], ''; echo ''; } function template_html_below() { global $context, $settings, $options, $scripturl, $txt, $modSettings; echo '
'; } // Show a linktree. This is that thing that shows "My Community | General Category | General Discussion".. function theme_linktree() { } // Show a linktree2. This is that thing that shows "My Community | General Category | General Discussion".. function theme_linktree2() { global $context, $settings, $options; echo ''; } // Show the menu up top. Something like [home] [help] [profile] [logout]... function template_menu() { global $context, $settings, $options, $scripturl, $txt; echo '
'; } // Generate a strip of buttons. function template_button_strip($button_strip, $direction = 'top', $custom_td = '') { global $settings, $context, $txt, $scripturl; // Create the buttons... $buttons = array(); foreach ($button_strip as $key => $value) if (!isset($value['test']) || !empty($context[$value['test']])) $buttons[] = '' . $txt[$value['text']] . ''; if (empty($buttons)) return ''; // Make the last one, as easy as possible. $buttons[count($buttons) - 1] = str_replace('', '', $buttons[count($buttons) - 1]); echo '
  • ', implode('
  • ', $buttons), '
'; } ?>