initial import from onelab svn codebase
[plewww.git] / themes / bluemarine / page.tpl.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
3
4 <head>
5   <title><?php print $head_title ?></title>
6   <?php print $head ?>
7   <?php print $styles ?>
8   <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
9 </head>
10
11 <body>
12
13 <table border="0" cellpadding="0" cellspacing="0" id="header">
14   <tr>
15     <td id="logo">
16       <?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
17       <?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 } ?>
18       <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
19     </td>
20     <td id="menu">
21       <?php if (isset($secondary_links)) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
22       <?php if (isset($primary_links)) { ?><div id="primary"><?php print theme('links', $primary_links) ?></div><?php } ?>
23       <?php print $search_box ?>
24     </td>
25   </tr>
26   <tr>
27     <td colspan="2"><div><?php print $header ?></div></td>
28   </tr>
29 </table>
30
31 <table border="0" cellpadding="0" cellspacing="0" id="content">
32   <tr>
33     <?php if ($sidebar_left) { ?><td id="sidebar-left">
34       <?php print $sidebar_left ?>
35     </td><?php } ?>
36     <td valign="top">
37       <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
38       <div id="main">
39         <?php print $breadcrumb ?>
40         <h1 class="title"><?php print $title ?></h1>
41         <div class="tabs"><?php print $tabs ?></div>
42         <?php print $help ?>
43         <?php print $messages ?>
44         <?php print $content; ?>
45       </div>
46     </td>
47     <?php if ($sidebar_right) { ?><td id="sidebar-right">
48       <?php print $sidebar_right ?>
49     </td><?php } ?>
50   </tr>
51 </table>
52
53 <div id="footer">
54   <?php print $footer_message ?>
55 </div>
56 <?php print $closure ?>
57 </body>
58 </html>