| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
<script type="text/javascript"> </script>
|
| 9 |
</head>
|
| 10 |
|
| 11 |
<body<?php print $onload_attributes ?>>
|
| 12 |
|
| 13 |
<table border="0" cellpadding="0" cellspacing="0" id="header">
|
| 14 |
<tr>
|
| 15 |
<td id="sitemast">
|
| 16 |
<?php if ($logo) { ?><a id="logo" href="./" title="Home"><img src="<?php print $logo ?>" alt="Home" /></a><?php } ?>
|
| 17 |
<?php if ($site_name) { ?><h1 class='site-name'><a href="./" title="Home"><?php print $site_name ?></a></h1><?php } ?>
|
| 18 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
| 19 |
</td>
|
| 20 |
</tr>
|
| 21 |
<tr>
|
| 22 |
<td id="menu">
|
| 23 |
<?php if (isset($primary_links)) { ?><div id="primary"><?php print '<ul><li>' . theme('links', $primary_links, '</li><li>') . '</li></ul>' ?></div><?php } ?>
|
| 24 |
<?php if (isset($secondary_links)) { ?><div id="secondary"><?php print '<ul><li>' . theme('links', $secondary_links, '</li><li>') . '</li></ul>' ?></div><?php } ?>
|
| 25 |
<?php print $search_box ?>
|
| 26 |
</td>
|
| 27 |
</tr>
|
| 28 |
<?php if ($header) { ?>
|
| 29 |
<tr>
|
| 30 |
<td id="subheader" colspan="2"><div><?php print $header ?></div></td>
|
| 31 |
</tr>
|
| 32 |
<?php } ?>
|
| 33 |
</table>
|
| 34 |
|
| 35 |
<table border="0" cellpadding="0" cellspacing="0" id="content">
|
| 36 |
<tr>
|
| 37 |
<?php if ($sidebar_left) { ?><td id="sidebar-left">
|
| 38 |
<?php print $sidebar_left ?>
|
| 39 |
</td><?php } ?>
|
| 40 |
<td valign="top">
|
| 41 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 42 |
<div id="main">
|
| 43 |
<?php print $breadcrumb ?>
|
| 44 |
<h1 class="title"><?php print $title ?></h1>
|
| 45 |
<div class="tabs"><?php print $tabs ?></div>
|
| 46 |
<?php print $help ?>
|
| 47 |
<?php print $messages ?>
|
| 48 |
|
| 49 |
<?php print $content; ?>
|
| 50 |
</div>
|
| 51 |
</td>
|
| 52 |
<?php if ($sidebar_right) { ?><td id="sidebar-right">
|
| 53 |
<?php print $sidebar_right ?>
|
| 54 |
</td><?php } ?>
|
| 55 |
</tr>
|
| 56 |
</table>
|
| 57 |
|
| 58 |
<div id="footer">
|
| 59 |
<p><?php print $footer_message ?></p>
|
| 60 |
</div>
|
| 61 |
<?php print $closure ?>
|
| 62 |
</body>
|
| 63 |
</html>
|