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