| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
|
| 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-type" content="text/html;charset=utf-8" />
|
| 7 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 8 |
<?php print $head ?>
|
| 9 |
<?php print $styles ?>
|
| 10 |
</head>
|
| 11 |
|
| 12 |
<body class="<?php print($layout) ?>" <?php print theme("onload_attribute"); ?>>
|
| 13 |
|
| 14 |
<div id="container">
|
| 15 |
|
| 16 |
<table id="header" border="0">
|
| 17 |
<tr>
|
| 18 |
<?php if ($logo) : ?>
|
| 19 |
<td id="logo">
|
| 20 |
<a href="<?php print url() ?>" title="Index Page"><img src="<?php print($logo) ?>" alt="Logo" /></a>
|
| 21 |
</td>
|
| 22 |
<?php endif; ?>
|
| 23 |
<td id="header-inner" valign="bottom">
|
| 24 |
<?php if ($site_name): ?>
|
| 25 |
<a id="site-name" href="<?php print url() ?>" title="Index Page"><?php print($site_name) ?></a>
|
| 26 |
<?php endif;?>
|
| 27 |
<?php if ($site_slogan): ?>
|
| 28 |
<span id="site-slogan"><?php print($site_slogan) ?></span>
|
| 29 |
<?php endif;?>
|
| 30 |
</td>
|
| 31 |
</tr>
|
| 32 |
</table>
|
| 33 |
|
| 34 |
<div class="main-content" id="content-<?php print $layout ?>">
|
| 35 |
<?php if ($breadcrumb && $breadcrumb != "<div class=\"breadcrumb\"></div>"): ?>
|
| 36 |
<?php print $breadcrumb ?>
|
| 37 |
<?php endif; ?>
|
| 38 |
|
| 39 |
<?php if ($mission != ""): ?>
|
| 40 |
<div id="mission"><?php print $mission ?></div>
|
| 41 |
<?php endif; ?>
|
| 42 |
|
| 43 |
<div id="main-content-inner">
|
| 44 |
|
| 45 |
<?php if ($title != ""): ?>
|
| 46 |
<h1 class="content-title"><?php print $title ?></h1>
|
| 47 |
<?php endif; ?>
|
| 48 |
<?php if ($tabs != ""): ?>
|
| 49 |
<?php print $tabs ?>
|
| 50 |
<?php endif; ?>
|
| 51 |
|
| 52 |
<?php if ($help != ""): ?>
|
| 53 |
<div id="help"><?php print $help ?></div>
|
| 54 |
<?php endif; ?>
|
| 55 |
|
| 56 |
<?php if ($messages != ""): ?>
|
| 57 |
<div id="message"><?php print $messages ?></div>
|
| 58 |
<?php endif; ?>
|
| 59 |
|
| 60 |
<!-- start main content -->
|
| 61 |
<?php print($content) ?>
|
| 62 |
<!-- end main content -->
|
| 63 |
|
| 64 |
</div>
|
| 65 |
|
| 66 |
</div><!-- mainContent -->
|
| 67 |
|
| 68 |
<div id="sidebar">
|
| 69 |
|
| 70 |
<?php if ($primary_links) : ?>
|
| 71 |
<ul id="main-nav">
|
| 72 |
<?php foreach ($primary_links as $link): ?>
|
| 73 |
<li><?php print $link?></li>
|
| 74 |
<?php endforeach; ?>
|
| 75 |
</ul>
|
| 76 |
<?php endif; ?>
|
| 77 |
|
| 78 |
<?php if ($secondary_links) : ?>
|
| 79 |
<ul id="sub-nav">
|
| 80 |
<?php foreach ($secondary_links as $link): ?>
|
| 81 |
<li><?php print $link?></li>
|
| 82 |
<?php endforeach; ?>
|
| 83 |
</ul>
|
| 84 |
<?php endif; ?>
|
| 85 |
|
| 86 |
<?php if ($search_box): ?>
|
| 87 |
<form action="<?php print url("search") ?>" method="post">
|
| 88 |
<div id="search">
|
| 89 |
<input class="form-text" type="text" size="15" value="" name="edit[keys]" /><input class="form-submit" type="submit" value="<?php print t("Search")?>" />
|
| 90 |
</div>
|
| 91 |
</form>
|
| 92 |
<?php endif; ?>
|
| 93 |
|
| 94 |
<?php if ($sidebar_left != ""): ?>
|
| 95 |
<div id="sidebar-left">
|
| 96 |
<?php print $sidebar_left ?>
|
| 97 |
</div>
|
| 98 |
<?php endif; ?>
|
| 99 |
|
| 100 |
<?php if ($sidebar_right != ""): ?>
|
| 101 |
<div id="sidebar-right">
|
| 102 |
<?php print $sidebar_right ?>
|
| 103 |
<br class="clear" />
|
| 104 |
</div>
|
| 105 |
<?php endif; ?>
|
| 106 |
|
| 107 |
</div>
|
| 108 |
|
| 109 |
<div id="footer">
|
| 110 |
<?php if ($footer_message) : ?>
|
| 111 |
<p><?php print $footer_message;?></p>
|
| 112 |
<?php endif; ?>
|
| 113 |
<!-- p>Validate <a href="http://validator.w3.org/check/referer">XHTML</a> or <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>.</p -->
|
| 114 |
</div><!-- footer -->
|
| 115 |
|
| 116 |
</div>
|
| 117 |
|
| 118 |
<?php print $closure;?>
|
| 119 |
|
| 120 |
</body>
|
| 121 |
|
| 122 |
</html>
|