| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div id="header">
|
| 11 |
<?php if ($site_name) { ?><h1><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 12 |
<?php if ($site_slogan) { ?><p><?php print $site_slogan ?></p><?php } ?>
|
| 13 |
</div>
|
| 14 |
<ul id="nav">
|
| 15 |
<li class="right"><?php print $search_box ?></li>
|
| 16 |
<?php if (isset($primary_links)) { ?> <?php print warped_primary_links() ?> <?php } ?>
|
| 17 |
</ul>
|
| 18 |
<div class="clear" />
|
| 19 |
<?php if ($sidebar_right) { ?>
|
| 20 |
<div id="sidebar">
|
| 21 |
<?php print $sidebar_right ?>
|
| 22 |
</div>
|
| 23 |
<?php } ?>
|
| 24 |
<div id="content" class="clearfix">
|
| 25 |
<?php if ($mission) { ?> <?php print $mission ?> <?php } ?>
|
| 26 |
<div><?php print $header; ?></div>
|
| 27 |
<h2><?php print $title ?></h2>
|
| 28 |
<div class="tabs"><?php print $tabs ?></div>
|
| 29 |
<?php print $help ?>
|
| 30 |
<?php print $messages ?>
|
| 31 |
<?php print $content; ?>
|
| 32 |
</div>
|
| 33 |
<div id="footer">
|
| 34 |
<?php print $footer_message ?>
|
| 35 |
</div>
|
| 36 |
<?php print $closure ?>
|
| 37 |
</body>
|
| 38 |
</html>
|