| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 3 |
<html lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" xmlns="http://www.w3.org/1999/xhtml">
|
| 4 |
|
| 5 |
<head>
|
| 6 |
<title><?php print $head_title ?></title>
|
| 7 |
<?php print $head ?>
|
| 8 |
<?php print $scripts ?>
|
| 9 |
<?php print $styles ?>
|
| 10 |
<!--[if lte IE 6]>
|
| 11 |
<style type="text/css" media="screen">
|
| 12 |
/* IE min-width trick */
|
| 13 |
div#wrapper1 {
|
| 14 |
width:expression(((document.compatMode && document.compatMode=='CSS1Compat') ? document.documentElement.clientWidth : document.body.clientWidth) < 720 ? "720px" : "auto");
|
| 15 |
}
|
| 16 |
</style>
|
| 17 |
<![endif]-->
|
| 18 |
</head>
|
| 19 |
|
| 20 |
<body <?php print theme("onload_attribute"); ?>>
|
| 21 |
<div class="hide">
|
| 22 |
<?php if ($site_slogan) : ?>
|
| 23 |
<div id="site-slogan"><span><?php print($site_slogan) ?></span></div>
|
| 24 |
<?php endif;?>
|
| 25 |
<a href="#content" title="Skip the site navigation to go directly to the content">Skip to content</a>
|
| 26 |
</div>
|
| 27 |
<!-- closes #header-->
|
| 28 |
<!-- START: HEADER -->
|
| 29 |
<div id="wrapper1">
|
| 30 |
<div id="wrapper2">
|
| 31 |
<div class="header" id="header">
|
| 32 |
<div class="headerpadding">
|
| 33 |
<?php if ($logo) : ?>
|
| 34 |
<div id="site-name"><a href="<?php print $base_path ?>" title="Home"><img
|
| 35 |
src="<?php print $logo ?>" alt="<?php print $site_name ?> Logo" /></a></div>
|
| 36 |
<?php endif; ?>
|
| 37 |
|
| 38 |
<div id ="region_header"><?php print $header ?></div>
|
| 39 |
|
| 40 |
<?php if (module_exists('banner')) : ?>
|
| 41 |
<div id="banner"><?php print banner_display() ?></div>
|
| 42 |
<?php endif; ?>
|
| 43 |
|
| 44 |
<?php if ($primary_links) : ?>
|
| 45 |
<?php print theme('links', array_reverse($primary_links), array('class' =>'links', 'id' => 'primary')); ?>
|
| 46 |
<?php elseif ($secondary_links) : ?>
|
| 47 |
<?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'secondary')); ?>
|
| 48 |
<?php endif; ?>
|
| 49 |
|
| 50 |
<?php if ($search_box) : ?>
|
| 51 |
<?php print $search_box ?>
|
| 52 |
<?php endif; ?>
|
| 53 |
|
| 54 |
</div>
|
| 55 |
</div>
|
| 56 |
<!-- END: HEADER-->
|
| 57 |
<hr class="hide" />
|
| 58 |
<div class="columns">
|
| 59 |
<?php if ($left != '') { ?>
|
| 60 |
<div class="leftcolumn sidebar" id="sidebar-left">
|
| 61 |
<div class="leftpadding">
|
| 62 |
<?php print $left; ?>
|
| 63 |
</div>
|
| 64 |
</div>
|
| 65 |
<?php } ?>
|
| 66 |
<?php if ($right != '') { ?>
|
| 67 |
<div class="rightcolumn sidebar" id="sidebar-right">
|
| 68 |
<div class="rightpadding">
|
| 69 |
<?php print $right; ?>
|
| 70 |
</div>
|
| 71 |
</div>
|
| 72 |
<?php } ?>
|
| 73 |
<hr class="hide" />
|
| 74 |
<div class="centercolumn">
|
| 75 |
<div class="centerpadding">
|
| 76 |
<div class="main-content" id="main">
|
| 77 |
<?php if (($_GET['q']) != variable_get('site_frontpage','node')): ?>
|
| 78 |
|
| 79 |
<?php if ($breadcrumb != ""): ?>
|
| 80 |
<div id="breadcrumbs">
|
| 81 |
<?php print t('You are here: ').$breadcrumb;?> <span class="breadcrumb"> » <?php if ($title != ""): print ucwords($title); endif; ?></span>
|
| 82 |
</div>
|
| 83 |
<?php endif; ?>
|
| 84 |
<?php endif; ?>
|
| 85 |
<?php if ($mission != ""): ?>
|
| 86 |
<div id="mission"><span><?php print $mission ?></span></div>
|
| 87 |
<?php endif; ?>
|
| 88 |
<?php if ($title != ""): ?>
|
| 89 |
<h1 id="title"><?php print $title ?></h1>
|
| 90 |
<?php endif; ?>
|
| 91 |
<?php if ($messages != ""): ?>
|
| 92 |
<div id="message"><?php print $messages ?></div>
|
| 93 |
<?php endif; ?>
|
| 94 |
<?php if ($help != ""): ?>
|
| 95 |
<div id="help"><?php print $help ?></div>
|
| 96 |
<?php endif; ?>
|
| 97 |
<?php if ($tabs != ""): ?>
|
| 98 |
<?php print $tabs ?>
|
| 99 |
<?php endif; ?>
|
| 100 |
|
| 101 |
<!-- start main content -->
|
| 102 |
<span><a name="content"></a></span>
|
| 103 |
<div class="content">
|
| 104 |
<?php print $content ?>
|
| 105 |
<?php if ($signature && $comment->cid > 1234): // Change "1234" to the last comment ID used before upgrading to Drupal 6 ?>
|
| 106 |
<div class="user-signature clear-block">
|
| 107 |
<?php print $signature ?>
|
| 108 |
</div>
|
| 109 |
<?php endif; ?>
|
| 110 |
</div>
|
| 111 |
<!-- end main content -->
|
| 112 |
|
| 113 |
</div><!-- main -->
|
| 114 |
</div>
|
| 115 |
</div>
|
| 116 |
</div>
|
| 117 |
<div class="clearing"></div>
|
| 118 |
<hr class="hide" />
|
| 119 |
<!-- START: FOOTER-->
|
| 120 |
<div id="footer" class="footer">
|
| 121 |
<?php if ($footer) : ?>
|
| 122 |
<?php print $footer;?>
|
| 123 |
<?php endif; ?>
|
| 124 |
<?php if ($footer_message) : ?>
|
| 125 |
<?php print $footer_message;?>
|
| 126 |
<?php endif; ?>
|
| 127 |
<?php print $closure;?>
|
| 128 |
</div>
|
| 129 |
<!-- END: FOOTER -->
|
| 130 |
</div><!-- wrapper -->
|
| 131 |
</div><!-- outer_wrapper -->
|
| 132 |
</body>
|
| 133 |
</html>
|
| 134 |
|