00001 <?php
00002
00003
00077 ?>
00078 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
00079 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
00080 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
00081
00082 <head>
00083 <title><?php print $head_title; ?></title>
00084 <?php print $head; ?>
00085 <?php print $styles; ?>
00086 <?php print $scripts; ?>
00087 <script type="text/javascript"><?php ?> </script>
00088 </head>
00089 <body class="<?php print $body_classes; ?>">
00090 <div id="page">
00091 <div id="header">
00092 <div id="logo-title">
00093
00094 <?php if (!empty($logo)): ?>
00095 <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo">
00096 <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
00097 </a>
00098 <?php endif; ?>
00099
00100 <div id="name-and-slogan">
00101 <?php if (!empty($site_name)): ?>
00102 <h1 id="site-name">
00103 <a href="<?php print $front_page ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
00104 </h1>
00105 <?php endif; ?>
00106
00107 <?php if (!empty($site_slogan)): ?>
00108 <div id="site-slogan"><?php print $site_slogan; ?></div>
00109 <?php endif; ?>
00110 </div> <!-- /name-and-slogan -->
00111 </div> <!-- /logo-title -->
00112
00113 <?php if (!empty($search_box)): ?>
00114 <div id="search-box"><?php print $search_box; ?></div>
00115 <?php endif; ?>
00116
00117 <?php if (!empty($header)): ?>
00118 <div id="header-region">
00119 <?php print $header; ?>
00120 </div>
00121 <?php endif; ?>
00122
00123 </div> <!-- /header -->
00124
00125 <div id="container" class="clear-block">
00126
00127 <div id="navigation" class="menu <?php if (!empty($primary_links)) { print "withprimary"; } if (!empty($secondary_links)) { print " withsecondary"; } ?> ">
00128 <?php if (!empty($primary_links)): ?>
00129 <div id="primary" class="clear-block">
00130 <?php print theme('links', $primary_links, array('class' => 'links primary-links')); ?>
00131 </div>
00132 <?php endif; ?>
00133
00134 <?php if (!empty($secondary_links)): ?>
00135 <div id="secondary" class="clear-block">
00136 <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')); ?>
00137 </div>
00138 <?php endif; ?>
00139 </div> <!-- /navigation -->
00140
00141 <?php if (!empty($left)): ?>
00142 <div id="sidebar-left" class="column sidebar">
00143 <?php print $left; ?>
00144 </div> <!-- /sidebar-left -->
00145 <?php endif; ?>
00146
00147 <div id="main" class="column"><div id="main-squeeze">
00148 <?php if (!empty($breadcrumb)): ?><div id="breadcrumb"><?php print $breadcrumb; ?></div><?php endif; ?>
00149 <?php if (!empty($mission)): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
00150
00151 <div id="content">
00152 <?php if (!empty($title)): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
00153 <?php if (!empty($tabs)): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
00154 <?php if (!empty($messages)): print $messages; endif; ?>
00155 <?php if (!empty($help)): print $help; endif; ?>
00156 <div id="content-content" class="clear-block">
00157 <?php print $content; ?>
00158 </div> <!-- /content-content -->
00159 <?php print $feed_icons; ?>
00160 </div> <!-- /content -->
00161
00162 </div></div> <!-- /main-squeeze /main -->
00163
00164 <?php if (!empty($right)): ?>
00165 <div id="sidebar-right" class="column sidebar">
00166 <?php print $right; ?>
00167 </div> <!-- /sidebar-right -->
00168 <?php endif; ?>
00169
00170 </div> <!-- /container -->
00171
00172 <div id="footer-wrapper">
00173 <div id="footer">
00174 <?php print $footer_message; ?>
00175 <?php if (!empty($footer)): print $footer; endif; ?>
00176 </div> <!-- /footer -->
00177 </div> <!-- /footer-wrapper -->
00178
00179 <?php print $closure; ?>
00180
00181 </div> <!-- /page -->
00182
00183 </body>
00184 </html>