2005-07-30 11:20:17 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2005-05-04 18:12:18 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title><?php print $head_title ?></title>
|
|
|
|
<?php print $head ?>
|
|
|
|
<?php print $styles ?>
|
2005-08-02 18:12:11 +00:00
|
|
|
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
2005-05-04 18:12:18 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body<?php print $onload_attributes ?>>
|
|
|
|
|
|
|
|
<table border="0" cellpadding="0" cellspacing="0" id="header">
|
|
|
|
<tr>
|
|
|
|
<td id="logo">
|
2005-08-24 15:28:53 +00:00
|
|
|
<?php if ($logo) { ?><a href="./" title="Home"><img src="<?php print $logo ?>" alt="Home" /></a><?php } ?>
|
|
|
|
<?php if ($site_name) { ?><h1 class='site-name'><a href="./" title="Home"><?php print $site_name ?></a></h1><?php } ?>
|
|
|
|
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
2005-05-04 18:12:18 +00:00
|
|
|
</td>
|
|
|
|
<td id="menu">
|
2005-11-04 08:17:22 +00:00
|
|
|
<?php if ($secondary_links) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
|
|
|
|
<?php if ($primary_links) { ?><div id="primary"><?php print theme('links', $primary_links) ?></div><?php } ?>
|
2005-10-07 06:51:43 +00:00
|
|
|
<?php print $search_box ?>
|
2005-05-04 18:12:18 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2005-08-16 18:06:18 +00:00
|
|
|
<tr>
|
|
|
|
<td colspan="2"><div><?php print $header ?></div></td>
|
|
|
|
</tr>
|
2005-05-04 18:12:18 +00:00
|
|
|
</table>
|
|
|
|
|
|
|
|
<table border="0" cellpadding="0" cellspacing="0" id="content">
|
|
|
|
<tr>
|
|
|
|
<?php if ($sidebar_left) { ?><td id="sidebar-left">
|
|
|
|
<?php print $sidebar_left ?>
|
|
|
|
</td><?php } ?>
|
|
|
|
<td valign="top">
|
|
|
|
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
|
|
|
<div id="main">
|
|
|
|
<?php print $breadcrumb ?>
|
|
|
|
<h1 class="title"><?php print $title ?></h1>
|
|
|
|
<div class="tabs"><?php print $tabs ?></div>
|
2005-05-05 07:35:58 +00:00
|
|
|
<?php print $help ?>
|
2005-05-04 18:12:18 +00:00
|
|
|
<?php print $messages ?>
|
|
|
|
|
|
|
|
<?php print $content; ?>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<?php if ($sidebar_right) { ?><td id="sidebar-right">
|
|
|
|
<?php print $sidebar_right ?>
|
|
|
|
</td><?php } ?>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div id="footer">
|
|
|
|
<?php print $footer_message ?>
|
|
|
|
</div>
|
|
|
|
<?php print $closure ?>
|
|
|
|
</body>
|
|
|
|
</html>
|