| 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" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 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 |
|
| 10 |
<body>
|
| 11 |
<div id="container">
|
| 12 |
<div id="sitetitle">
|
| 13 |
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 14 |
<?php if ($site_slogan) { ?><h2 class='site-slogan'><?php print $site_slogan ?></h2><?php } ?>
|
| 15 |
</div> <!--sidetitle-->
|
| 16 |
|
| 17 |
<div id="menu">
|
| 18 |
<?php if (isset($secondary_links)) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
|
| 19 |
<?php if (isset($primary_links)) { ?><div id="primary"><?php print theme('links', $primary_links) ?></div><?php } ?>
|
| 20 |
<?php print $search_box ?>
|
| 21 |
</div> <!--menu-->
|
| 22 |
|
| 23 |
<div id="content">
|
| 24 |
|
| 25 |
<div id="left">
|
| 26 |
<div><?php print $header ?></div>
|
| 27 |
|
| 28 |
<?php print $breadcrumb ?>
|
| 29 |
|
| 30 |
<h2 class="nodetitle"><?php print $title ?></h2>
|
| 31 |
<div class="tabs"><?php print $tabs ?></div>
|
| 32 |
<?php print $help ?>
|
| 33 |
<?php print $messages ?>
|
| 34 |
<?php print $content; ?> <!--entry?-->
|
| 35 |
</div> <!--left-->
|
| 36 |
|
| 37 |
|
| 38 |
<div id="right">
|
| 39 |
|
| 40 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 41 |
|
| 42 |
<div class="subcontainer">
|
| 43 |
<div class="rightsub">
|
| 44 |
<?php print $sidebar_left ?>
|
| 45 |
</div> <!--rightsub-->
|
| 46 |
|
| 47 |
<div class="rightsub2">
|
| 48 |
<?php if ($sidebar_right) { ?>
|
| 49 |
<?php print $sidebar_right ?>
|
| 50 |
<?php } ?>
|
| 51 |
</div> <!--rightsub2-->
|
| 52 |
</div> <!--subcontainer-->
|
| 53 |
</div> <!--right-->
|
| 54 |
|
| 55 |
<div id="footer">
|
| 56 |
<?php print $footer_message ?>
|
| 57 |
</div> <!--footer-->
|
| 58 |
</div> <!--content-->
|
| 59 |
</div> <!--container-->
|
| 60 |
<?php print $closure ?>
|
| 61 |
</body>
|
| 62 |
</html>
|