| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<!--[if lte IE 6]>
|
| 7 |
<style>
|
| 8 |
body {behavior:url("<?php print $base_path . $directory ?>/csshover.htc");}
|
| 9 |
</style>
|
| 10 |
<![endif]-->
|
| 11 |
<?php print $styles ?>
|
| 12 |
<!--[if lte IE 6]>
|
| 13 |
<link rel="stylesheet" type="text/css" href="<?php print $base_path . $directory ?>/ie6.css" />
|
| 14 |
<![endif]-->
|
| 15 |
<!--[if IE 7]>
|
| 16 |
<link rel="stylesheet" type="text/css" href="<?php print $base_path . $directory ?>/ie7.css" />
|
| 17 |
<![endif]-->
|
| 18 |
<?php print $scripts ?>
|
| 19 |
</head>
|
| 20 |
|
| 21 |
<body class="<?php print $body_classes ?>">
|
| 22 |
<div id="page_wrapper">
|
| 23 |
<div id="header">
|
| 24 |
<div id="header_blocks"><?php print $header_banner ?></div>
|
| 25 |
<?php if($logo): ?><a href="<?php print $frontpage ?>"><img src="<?php print $logo ?>" /></a><?php endif ?><?php if($site_name): ?><h1 class="page-title"><?php print $site_name ?></h1><?php endif ?><?php if($site_slogan): ?><span class="page-slogan"><?php print $site_slogan ?></span><?php endif ?>
|
| 26 |
</div>
|
| 27 |
<div id="additional_header"><?php print $additional_header ?></div>
|
| 28 |
<div id="columns">
|
| 29 |
<div id="content_bar">
|
| 30 |
<?php print $breadcrumb; ?>
|
| 31 |
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
| 32 |
<?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
|
| 33 |
<div id="top_content"><?php print $top_content ?></div>
|
| 34 |
<?php print $help; ?>
|
| 35 |
<?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
|
| 36 |
<?php if ($tabs): print '<ul class="tabs primary">'. $tabs .'</ul></div>'; endif; ?>
|
| 37 |
<?php if ($tabs2): print '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; ?>
|
| 38 |
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
|
| 39 |
<div id="main_content"><?php print $content ?></div>
|
| 40 |
<div id="bottom_content"><?php print $bottom_content ?></div>
|
| 41 |
</div>
|
| 42 |
</div>
|
| 43 |
<div id="left_bar"><?php print $left_bar ?><div id="credits">Design by <a href="http://www.tibiafusion.com" Title="Comunidad Chilena de Tibia"> TibiaFusion</a></div></div>
|
| 44 |
<div id="right_bar"><?php if($search_box): ?><div id="theme-search"><?php print $search_box ?></div><?php endif ?><?php print $right_bar ?></div>
|
| 45 |
<div id="footer">
|
| 46 |
<div id="footer_blocks"><?php print $footer ?></div>
|
| 47 |
<div id="footer_message"><?php print $footer_message ?></div>
|
| 48 |
<?php print $closure ?>
|
| 49 |
</div>
|
| 50 |
</div>
|
| 51 |
</body>
|
| 52 |
</html>
|