| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
| 2 |
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.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 |
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
|
| 7 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 8 |
<?php print $custom_css ?>
|
| 9 |
<?php print $head ?>
|
| 10 |
<?php print $styles ?>
|
| 11 |
<script type="text/javascript"> </script>
|
| 12 |
</head>
|
| 13 |
|
| 14 |
<body<?php print $onload_attributes ?>>
|
| 15 |
<div class="pageFrame" id="nodeFrame">
|
| 16 |
<div id="header">
|
| 17 |
<?php if ($logo) : ?>
|
| 18 |
<a href="<?php print url() ?>" title="Index Page"><img src="<?php print($logo) ?>" alt="Logo" /></a>
|
| 19 |
<?php endif; ?>
|
| 20 |
|
| 21 |
<?php if ($site_name) : ?>
|
| 22 |
<a href="<?php print url() ?>" title="Index Page"><h1 id="site-name"><?php print($site_name) ?></h1></a>
|
| 23 |
<?php endif;?>
|
| 24 |
<?php if ($site_slogan) : ?>
|
| 25 |
<span id="site-slogan"><?php print($site_slogan) ?></span>
|
| 26 |
<?php endif;?>
|
| 27 |
|
| 28 |
<?php if ($search_box): ?>
|
| 29 |
<form action="<?php print url("search") ?>" method="post">
|
| 30 |
<div id="search">
|
| 31 |
<input class="form-text" type="text" size="15" value="" name="edit[keys]" /><input class="form-submit" type="submit" value="<?php print(t("Search"))?>" />
|
| 32 |
</div>
|
| 33 |
</form>
|
| 34 |
<?php endif; ?>
|
| 35 |
</div>
|
| 36 |
|
| 37 |
<?php if (is_array($primary_links)): ?>
|
| 38 |
<ul id="main-nav">
|
| 39 |
<?php foreach ($primary_links as $link): ?>
|
| 40 |
<li><?php print $link?></li>
|
| 41 |
<?php endforeach; ?>
|
| 42 |
</ul>
|
| 43 |
<?php endif; ?>
|
| 44 |
|
| 45 |
<?php if ($sidebar_left != ""): ?>
|
| 46 |
<div class="sidebar" id="sidebar-left">
|
| 47 |
<?php print $sidebar_left ?>
|
| 48 |
</div>
|
| 49 |
<?php endif; ?>
|
| 50 |
|
| 51 |
<?php if ($sidebar_right != ""): ?>
|
| 52 |
<div class="sidebar" id="sidebar-right">
|
| 53 |
<?php print $sidebar_right ?>
|
| 54 |
</div>
|
| 55 |
<?php endif; ?>
|
| 56 |
|
| 57 |
<div class="main-content" id="content-<?php print $layout ?>">
|
| 58 |
<?php if (trim(strip_tags($breadcrumb))) { print $breadcrumb; } ?>
|
| 59 |
<?php if ($mission != ""): ?>
|
| 60 |
<p id="mission"><?php print $mission ?></p>
|
| 61 |
<?php endif; ?>
|
| 62 |
<?php if ($title != ""): ?>
|
| 63 |
<h1 class="title"><?php print $title ?></h1>
|
| 64 |
<?php endif; ?>
|
| 65 |
<?php if ($tabs != ""): ?>
|
| 66 |
<div class="tabs"><?php print $tabs ?></div>
|
| 67 |
<?php endif; ?>
|
| 68 |
<?php if ($help != ""): ?>
|
| 69 |
<p id="help"><?php print $help ?></p>
|
| 70 |
<?php endif; ?>
|
| 71 |
<?php if ($messages != ""): ?>
|
| 72 |
<div id="message"><?php print $messages ?></div>
|
| 73 |
<?php endif; ?>
|
| 74 |
|
| 75 |
<!-- start main content -->
|
| 76 |
<?php print($content) ?>
|
| 77 |
<!-- end main content -->
|
| 78 |
|
| 79 |
<div id="footer">
|
| 80 |
<?php if ($footer_message) : ?>
|
| 81 |
<p><?php print $footer_message;?></p>
|
| 82 |
<?php endif; ?>
|
| 83 |
</div><!-- footer -->
|
| 84 |
</div><!-- mainContent -->
|
| 85 |
</div><!-- pageFrame -->
|
| 86 |
<?php print $closure;?>
|
| 87 |
</body>
|
| 88 |
</html>
|
| 89 |
|