| 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" 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 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 7 |
<?php print $head; ?>
|
| 8 |
<?php print $styles; ?>
|
| 9 |
<?php print $scripts; ?>
|
| 10 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
|
| 11 |
</head>
|
| 12 |
<body class="<?php print $body_classes; ?>">
|
| 13 |
<div id="header" class="clear-block">
|
| 14 |
<?php print $search_box ?>
|
| 15 |
<?php if ($logo) : ?>
|
| 16 |
<a href="<?php print url() ?>" title="Index Page"><img src="<?php print($logo) ?>" alt="Logo" /></a>
|
| 17 |
<?php endif; ?>
|
| 18 |
<?php if ($site_name) : ?>
|
| 19 |
<h1 id="site-name"><a href="<?php print url() ?>" title="Index Page"><?php print($site_name) ?></a></h1>
|
| 20 |
<?php endif;?>
|
| 21 |
<?php if ($site_slogan) : ?>
|
| 22 |
<span id="site-slogan"><?php print($site_slogan) ?></span>
|
| 23 |
<?php endif;?>
|
| 24 |
<?php print $header ?>
|
| 25 |
</div>
|
| 26 |
<div id="top-nav">
|
| 27 |
<?php if (!empty($secondary_links)): ?>
|
| 28 |
<?php print theme('links', $secondary_links, array('id' => 'secondary')); ?>
|
| 29 |
<?php endif; ?>
|
| 30 |
<?php if (!empty($primary_links)): ?>
|
| 31 |
<?php print theme('links', $primary_links, array('id' => 'primary')); ?>
|
| 32 |
<?php endif; ?>
|
| 33 |
</div>
|
| 34 |
<table id="content">
|
| 35 |
<tr>
|
| 36 |
<?php if (!empty($left)): ?>
|
| 37 |
<td class="sidebar" id="sidebar-left">
|
| 38 |
<?php print $left ?>
|
| 39 |
</td>
|
| 40 |
<?php endif; ?>
|
| 41 |
<td class="main-content" id="content-<?php print $layout ?>">
|
| 42 |
<?php if (!empty($title)): ?>
|
| 43 |
<h2 class="content-title"><?php print $title ?></h2>
|
| 44 |
<?php endif; ?>
|
| 45 |
<?php if (!empty($tabs)): ?>
|
| 46 |
<?php print $tabs ?>
|
| 47 |
<?php endif; ?>
|
| 48 |
|
| 49 |
<?php if (!empty($mission)): ?>
|
| 50 |
<div id="mission"><?php print $mission ?></div>
|
| 51 |
<?php endif; ?>
|
| 52 |
|
| 53 |
<?php if (!empty($help)): ?>
|
| 54 |
<p id="help"><?php print $help ?></p>
|
| 55 |
<?php endif; ?>
|
| 56 |
|
| 57 |
<?php if ($show_messages && $messages): ?>
|
| 58 |
<div id="message"><?php print $messages ?></div>
|
| 59 |
<?php endif; ?>
|
| 60 |
|
| 61 |
<!-- start main content -->
|
| 62 |
<?php print($content) ?>
|
| 63 |
<!-- end main content -->
|
| 64 |
<?php print $feed_icons; ?>
|
| 65 |
</td><!-- mainContent -->
|
| 66 |
<?php if (!empty($right)): ?>
|
| 67 |
<td class="sidebar" id="sidebar-right">
|
| 68 |
<?php print $right ?>
|
| 69 |
</td>
|
| 70 |
<?php endif; ?>
|
| 71 |
</tr>
|
| 72 |
</table>
|
| 73 |
<?php print $breadcrumb ?>
|
| 74 |
<div id="footer">
|
| 75 |
<?php print $footer_message ?>
|
| 76 |
<?php print $footer ?>
|
| 77 |
Validate <a href="http://validator.w3.org/check/referer">XHTML</a> or <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>.
|
| 78 |
</div><!-- footer -->
|
| 79 |
<?php print $closure;?>
|
| 80 |
</body>
|
| 81 |
</html>
|
| 82 |
|