', $context['page_title'], ''; // This is here because Gecko browsers properly support white-space.... if ($context['browser']['is_gecko']) echo ' '; // The ?betarc1 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 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'], ' '; // For some STRANGE reason, we have to tell Internet Explorer 4 and 5 that the content should be 100% wide. (or else it will assume about 108%!) echo '
'; // The logo and the three info boxes. // To change the image put it in your images directory and change warhammer.gif to the new name echo '
*'; // Show the menu here, according to the menu sub template. template_menu(); echo '
'; // The main content should go here. A table is used because IE 6 just can't handle a div. echo '
'; } function template_main_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 '
', $txt['powered_by_mysql'], ' ', $txt['powered_by_php'], ' ', theme_copyright(), ' Chromiates Wargaming Forums © 2004-2005 BLEE! Inc.
© 2004 Template by TheGamer All Rights Reserved

Website code by ^Raven^ & modified by Dragon
Chromiates Wargaming Forums is a subdivision of BLEE! Inc.
Warhammer Fantasy, 40k, and Blood Bowl graphics by Nicholas Kelsch © 2003
Chromiates Wargaming Forums banner created by Builder Dan
CWF Affiliates Button and Dice Graphics created by Cypher7
Imperial Date Program courtesy of Dakka Dakka
Some caption contest graphics are courtesy of Danger Planet Games in Waltham, Massachusetts USA
Vote for us at the Moveon Top100!

', $txt['valid_xhtml'], ' ', $txt['valid_css'], '
'; // Show the load time? if ($context['show_load_time']) echo ' ', $txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], ''; echo '
'; // This is an interesting bug in Internet Explorer. Rather annoying, it makes overflows just not tall enough. if ($context['browser']['is_ie'] && !$context['browser']['is_ie4']) { // The purpose of this code is to fix the height of overflow: auto div blocks, because IE can't figure it out for itself. echo ' '; } echo ' '; echo '
Vote for us at the Moveon Top100!



This web site is completely unofficial and in no way endorsed by Games Workshop Limited.

Adeptus Astartes, Battlefleet Gothic, Black Flame, Black Library, the Black Library logo, BL Publishing, Blood Angels, Bloodquest, Blood Bowl, the Blood Bowl logo, The Blood Bowl Spike Device, Cadian, Catachan, the Chaos device, Cityfight, the Chaos logo, Citadel, Citadel Device, City of the Damned, Codex, Daemonhunters, Dark Angels, Dark Eldar, Dark Future, the Double-Headed/Imperial Eagle device, \'Eavy Metal, Eldar, Eldar symbol devices, Epic, Eye of Terror, Fanatic, the Fanatic logo, the Fanatic II logo, Fire Warrior, Forge World, Games Workshop, Games Workshop logo, Genestealer, Golden Demon, Gorkamorka, Great Unclean One, the Hammer of Sigmar logo, Horned Rat logo, Inferno, Inquisitor, the Inquisitor logo, the Inquisitor device, Inquisitor:Conspiracies, Keeper of Secrets, Khemri, Khorne, Kroot, Lord of Change, Marauder, Mordheim, the Mordheim logo, Necromunda, Necromunda stencil logo, Necromunda Plate logo, Necron, Nurgle, Ork, Ork skull devices, Sisters of Battle, Skaven, the Skaven symbol devices, Slaanesh, Space Hulk, Space Marine, Space Marine chapters, Space Marine chapter logos, Talisman, Tau, the Tau caste designations, Tomb Kings, Trio of Warriors, Twin Tailed Comet Logo, Tyranid, Tyrannid, Tzeentch, Ultramarines, Warhammer, Warhammer Historical, Warhammer Online, Warhammer 40k Device, Warhammer World logo, Warmaster, White Dwarf, the White Dwarf logo, and all associated marks, names, races, race insignia, characters, vehicles, locations, units, illustrations and images from the Blood Bowl game, the Warhammer world, the Talisaman world, and the Warhammer 40,000 universe are either ®, TM and/or © Copyright Games Workshop Ltd 2000-2004, variably registered in the UK and other countries around the world. Used without permission. No challenge to their status intended. All Rights Reserved to their respective owners.

All other original material on this site is copyright BLEE! Inc. 1994-2005 unless otherwise noted.
No squigs, squats, or chaos dwarfs were harmed in the creation of this forum.
All members are bound by our Registration Agreement, Forum Rules, and other Forum Policies.

Banner Ads

[ << Back | Join Now | Forum | Featured Sites | Forward >> ]
Warhammer War Game

'; } // Show a linktree. This is that thing that shows "My Community | General Category | General Discussion".. function theme_linktree() { global $context, $settings, $options; // Folder style or inline? Inline has a smaller font. echo ''; // Each tree item has a URL and name. Some may have extra_before and extra_after. foreach ($context['linktree'] as $link_num => $tree) { // Show the | | |-[] Folders. if (!$settings['linktree_inline']) { if ($link_num > 0) echo str_repeat('| ', $link_num - 1), '|-'; echo '+  '; } // Show something before the link? if (isset($tree['extra_before'])) echo $tree['extra_before']; // Show the link, including a URL if it should have one. echo '', $settings['linktree_link'] && isset($tree['url']) ? '' . $tree['name'] . '' : $tree['name'], ''; // Show something after the link...? if (isset($tree['extra_after'])) echo $tree['extra_after']; // Don't show a separator for the last one. if ($link_num != count($context['linktree']) - 1) echo $settings['linktree_inline'] ? '  |  ' : '
'; } echo '
'; } // Show the menu up top. Something like [home] [help] [profile] [logout]... function template_menu() { global $context, $settings, $options, $scripturl, $txt; // Show the [home] and [help] buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[103] . '' : $txt[103]), '', $context['menu_separator'], ' ', ($settings['use_image_buttons'] ? '' . $txt[119] . '' : $txt[119]), '', $context['menu_separator']; // ads.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[801] . '' : $txt[801]), ''; // affiliates.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[802] . '' : $txt[802]), ''; // avatars.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[803] . '' : $txt[803]), ''; // bash.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[804] . '' : $txt[804]), ''; // chat.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[805] . '' : $txt[805]), ''; // donate.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[807] . '' : $txt[807]), ''; // downloads.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[808] . '' : $txt[808]), ''; // features.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[809] . '' : $txt[809]), ''; // forums.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[810] . '' : $txt[810]), ''; // gallery.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[811] . '' : $txt[811]), ''; // staff.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[812] . '' : $txt[812]), ''; // website.gif buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[813] . '' : $txt[813]), ''; // How about the [search] button? if ($context['allow_search']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt[182] . '' : $txt[182]), '', $context['menu_separator']; // Is the user allowed to administrate at all? ([admin]) if ($context['allow_admin']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt[2] . '' : $txt[2]), '', $context['menu_separator']; // Edit Profile... [profile] if ($context['allow_edit_profile']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt[79] . '' : $txt[467]), '', $context['menu_separator']; // The [calendar]! if ($context['allow_calendar']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt['calendar24'] . '' : $txt['calendar24']), '', $context['menu_separator']; // If the user is a guest, show [login] and [register] buttons. if ($context['user']['is_guest']) { echo ' ', ($settings['use_image_buttons'] ? '' . $txt[34] . '' : $txt[34]), '', $context['menu_separator'], ' ', ($settings['use_image_buttons'] ? '' . $txt[97] . '' : $txt[97]), ''; } // Otherwise, they might want to [logout]... else echo ' ', ($settings['use_image_buttons'] ? '' . $txt[108] . '' : $txt[108]), ''; } ?>