00001 <?php
00002
00003
00016 ?>
00017 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
00018 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
00019 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
00020
00021 <head>
00022 <title><?php print $head_title; ?></title>
00023 <?php print $head; ?>
00024 <?php print $styles; ?>
00025 <?php print $scripts; ?>
00026 <script type="text/javascript"><?php ?> </script>
00027 </head>
00028 <body class="<?php print $body_classes; ?>">
00029 <div id="page">
00030 <div id="header">
00031 <div id="logo-title">
00032
00033 <?php if (!empty($logo)): ?>
00034 <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo">
00035 <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
00036 </a>
00037 <?php endif; ?>
00038
00039 <div id="name-and-slogan">
00040 <?php if (!empty($site_name)): ?>
00041 <h1 id="site-name">
00042 <a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
00043 </h1>
00044 <?php endif; ?>
00045
00046 <?php if (!empty($site_slogan)): ?>
00047 <div id="site-slogan"><?php print $site_slogan; ?></div>
00048 <?php endif; ?>
00049 </div> <!-- /name-and-slogan -->
00050 </div> <!-- /logo-title -->
00051
00052 <?php if (!empty($header)): ?>
00053 <div id="header-region">
00054 <?php print $header; ?>
00055 </div>
00056 <?php endif; ?>
00057
00058 </div> <!-- /header -->
00059
00060 <div id="container" class="clear-block">
00061
00062 <?php if (!empty($left)): ?>
00063 <div id="sidebar-left" class="column sidebar">
00064 <?php print $left; ?>
00065 </div> <!-- /sidebar-left -->
00066 <?php endif; ?>
00067
00068 <div id="main" class="column"><div id="main-squeeze">
00069
00070 <div id="content">
00071 <?php if (!empty($title)): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
00072 <?php if (!empty($messages)): print $messages; endif; ?>
00073 <div id="content-content" class="clear-block">
00074 <?php print $content; ?>
00075 </div> <!-- /content-content -->
00076 </div> <!-- /content -->
00077
00078 </div></div> <!-- /main-squeeze /main -->
00079
00080 <?php if (!empty($right)): ?>
00081 <div id="sidebar-right" class="column sidebar">
00082 <?php print $right; ?>
00083 </div> <!-- /sidebar-right -->
00084 <?php endif; ?>
00085
00086 </div> <!-- /container -->
00087
00088 <div id="footer-wrapper">
00089 <div id="footer">
00090 <?php print $footer_message; ?>
00091 <?php if (!empty($footer)): print $footer; endif; ?>
00092 </div> <!-- /footer -->
00093 </div> <!-- /footer-wrapper -->
00094
00095 </div> <!-- /page -->
00096
00097 </body>
00098 </html>