| 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="en">
|
| 4 |
<head>
|
| 5 |
<title> <?php print $head_title ?> </title>
|
| 6 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 7 |
<?php print $head ?>
|
| 8 |
<?php print $styles ?>
|
| 9 |
<?php print $scripts ?>
|
| 10 |
</head>
|
| 11 |
<body <?php print theme("onload_attribute"); ?> >
|
| 12 |
<div id="all">
|
| 13 |
<div id="header" <?php if(!$search_box && !$site_name && !$site_slogan) echo "class=\"center_logo\"" ?>>
|
| 14 |
<?php if ($search_box): ?>
|
| 15 |
<div id="search-wrap">
|
| 16 |
<?php print $search_box; ?>
|
| 17 |
</div>
|
| 18 |
<?php endif; ?>
|
| 19 |
<?php if ($logo) : ?>
|
| 20 |
<a href=" <?php print url() ?> " title="Index Page"><img src=" <?php print($logo) ?> " alt="Logo" /></a>
|
| 21 |
<?php endif; ?>
|
| 22 |
<?php if ($site_name) : ?>
|
| 23 |
<h1 id="site-name"><a href=" <?php print url() ?> " title="Index Page"> <?php print($site_name) ?> </a></h1>
|
| 24 |
<?php endif;?>
|
| 25 |
<?php if ($site_slogan) : ?>
|
| 26 |
<span id="site-slogan"> <?php print($site_slogan) ?> </span>
|
| 27 |
<?php endif;?>
|
| 28 |
<br class="clear" />
|
| 29 |
</div>
|
| 30 |
|
| 31 |
<div id="top-nav">
|
| 32 |
<?php echo theme('links', $primary_links, array('id' => 'primary')) ?>
|
| 33 |
<?php echo theme('links', $secondary_links, array('id' => 'secondary')) ?>
|
| 34 |
</div>
|
| 35 |
<?php if($header) : ?>
|
| 36 |
<div class="sidebar" id="sidebar-top">
|
| 37 |
<?php print $header; ?>
|
| 38 |
</div>
|
| 39 |
<?php endif; ?>
|
| 40 |
|
| 41 |
<table id="content"><tbody style="border: none !important;">
|
| 42 |
<tr>
|
| 43 |
<?php if ($sidebar_left != ""): ?>
|
| 44 |
<td class="sidebar" id="sidebar-left">
|
| 45 |
<?php print $sidebar_left ?>
|
| 46 |
</td>
|
| 47 |
<?php endif; ?>
|
| 48 |
<td class="main-content" id="content-<?php print $layout ?>">
|
| 49 |
<?php if ($title != ""): ?>
|
| 50 |
<h2 class="content-title"> <?php print $title ?> </h2>
|
| 51 |
<?php endif; ?>
|
| 52 |
<?php if ($tabs != ""): ?>
|
| 53 |
<?php print $tabs ?>
|
| 54 |
<?php endif; ?>
|
| 55 |
<?php if ($mission != ""): ?>
|
| 56 |
<p id="mission"> <?php print $mission ?> </p>
|
| 57 |
<?php endif; ?>
|
| 58 |
<?php if ($help != ""): ?>
|
| 59 |
<p id="help"> <?php print $help ?> </p>
|
| 60 |
<?php endif; ?>
|
| 61 |
<?php if ($messages != ""): ?>
|
| 62 |
<div id="message"> <?php print $messages ?> </div>
|
| 63 |
<?php endif; ?>
|
| 64 |
<!-- start main content -->
|
| 65 |
<?php print($content) ?>
|
| 66 |
<!-- end main content -->
|
| 67 |
</td><!-- mainContent -->
|
| 68 |
<?php if ($sidebar_right != ""): ?>
|
| 69 |
<td class="sidebar" id="sidebar-right">
|
| 70 |
<?php print $sidebar_right ?>
|
| 71 |
</td>
|
| 72 |
<?php endif; ?>
|
| 73 |
</tr>
|
| 74 |
</tbody></table>
|
| 75 |
<?php if ($breadcrumb != ""): ?>
|
| 76 |
<?php print $breadcrumb ?>
|
| 77 |
<?php endif; ?>
|
| 78 |
<?php print $closure;?>
|
| 79 |
</div>
|
| 80 |
<div id="footer">
|
| 81 |
<?php if ($footer_message) : ?>
|
| 82 |
<p> <?php print $footer_message;?> </p>
|
| 83 |
<?php endif; ?>
|
| 84 |
</div><!-- footer -->
|
| 85 |
</body>
|
| 86 |
</html>
|
| 87 |
|