| webmaster@1 | 1 <?php | 
| webmaster@1 | 2 // $Id: page.tpl.php,v 1.25 2008/01/24 09:42:53 goba Exp $ | 
| webmaster@1 | 3 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 
| webmaster@1 | 4 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>"> | 
| webmaster@1 | 5 <head> | 
| webmaster@1 | 6   <title><?php print $head_title ?></title> | 
| webmaster@1 | 7   <meta http-equiv="Content-Style-Type" content="text/css" /> | 
| webmaster@1 | 8   <?php print $head ?> | 
| webmaster@1 | 9   <?php print $styles ?> | 
| webmaster@1 | 10   <?php print $scripts ?> | 
| webmaster@1 | 11 </head> | 
| webmaster@1 | 12 | 
| webmaster@1 | 13 <body bgcolor="#ffffff"> | 
| webmaster@1 | 14 | 
| webmaster@1 | 15 <div class="hide"><a href="#content" title="<?php print t('Skip navigation') ?>." accesskey="2"><?php print t('Skip navigation') ?></a>.</div> | 
| webmaster@1 | 16 | 
| webmaster@1 | 17 <table id="primary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%"> | 
| webmaster@1 | 18   <tr> | 
| webmaster@1 | 19     <td id="home" width="10%"> | 
| webmaster@1 | 20       <?php if ($logo) : ?> | 
| webmaster@1 | 21         <a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print($logo) ?>" alt="<?php print t('Home') ?>" border="0" /></a> | 
| webmaster@1 | 22       <?php endif; ?> | 
| webmaster@1 | 23     </td> | 
| webmaster@1 | 24 | 
| webmaster@1 | 25     <td id="site-info" width="20%"> | 
| webmaster@1 | 26       <?php if ($site_name) : ?> | 
| webmaster@1 | 27         <div class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print($site_name) ?></a></div> | 
| webmaster@1 | 28       <?php endif;?> | 
| webmaster@1 | 29       <?php if ($site_slogan) : ?> | 
| webmaster@1 | 30         <div class='site-slogan'><?php print($site_slogan) ?></div> | 
| webmaster@1 | 31       <?php endif;?> | 
| webmaster@1 | 32     </td> | 
| webmaster@1 | 33     <td class="primary-links" width="70%" align="center" valign="middle"> | 
| webmaster@1 | 34       <?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?> | 
| webmaster@1 | 35     </td> | 
| webmaster@1 | 36   </tr> | 
| webmaster@1 | 37 </table> | 
| webmaster@1 | 38 | 
| webmaster@1 | 39 <table id="secondary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%"> | 
| webmaster@1 | 40   <tr> | 
| webmaster@1 | 41     <td class="secondary-links" width="75%"  align="center" valign="middle"> | 
| webmaster@1 | 42       <?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?> | 
| webmaster@1 | 43     </td> | 
| webmaster@1 | 44     <td width="25%" align="center" valign="middle"> | 
| webmaster@1 | 45       <?php print $search_box ?> | 
| webmaster@1 | 46     </td> | 
| webmaster@1 | 47   </tr> | 
| webmaster@1 | 48   <tr> | 
| webmaster@1 | 49     <td colspan="2"><div><?php print $header ?></div></td> | 
| webmaster@1 | 50   </tr> | 
| webmaster@1 | 51 </table> | 
| webmaster@1 | 52 | 
| webmaster@1 | 53 <table id="content" border="0" cellpadding="15" cellspacing="0" width="100%"> | 
| webmaster@1 | 54   <tr> | 
| webmaster@1 | 55     <?php if ($left != ""): ?> | 
| webmaster@1 | 56     <td id="sidebar-left"> | 
| webmaster@1 | 57       <?php print $left ?> | 
| webmaster@1 | 58     </td> | 
| webmaster@1 | 59     <?php endif; ?> | 
| webmaster@1 | 60 | 
| webmaster@1 | 61     <td valign="top"> | 
| webmaster@1 | 62       <?php if ($mission != ""): ?> | 
| webmaster@1 | 63       <div id="mission"><?php print $mission ?></div> | 
| webmaster@1 | 64       <?php endif; ?> | 
| webmaster@1 | 65 | 
| webmaster@1 | 66       <div id="main"> | 
| webmaster@1 | 67         <?php if ($title != ""): ?> | 
| webmaster@1 | 68           <?php print $breadcrumb ?> | 
| webmaster@1 | 69           <h1 class="title"><?php print $title ?></h1> | 
| webmaster@1 | 70 | 
| webmaster@1 | 71           <?php if ($tabs != ""): ?> | 
| webmaster@1 | 72             <div class="tabs"><?php print $tabs ?></div> | 
| webmaster@1 | 73           <?php endif; ?> | 
| webmaster@1 | 74 | 
| webmaster@1 | 75         <?php endif; ?> | 
| webmaster@1 | 76 | 
| webmaster@1 | 77         <?php if ($show_messages && $messages != ""): ?> | 
| webmaster@1 | 78           <?php print $messages ?> | 
| webmaster@1 | 79         <?php endif; ?> | 
| webmaster@1 | 80 | 
| webmaster@1 | 81         <?php if ($help != ""): ?> | 
| webmaster@1 | 82             <div id="help"><?php print $help ?></div> | 
| webmaster@1 | 83         <?php endif; ?> | 
| webmaster@1 | 84 | 
| webmaster@1 | 85       <!-- start main content --> | 
| webmaster@1 | 86       <?php print $content; ?> | 
| webmaster@1 | 87       <?php print $feed_icons; ?> | 
| webmaster@1 | 88       <!-- end main content --> | 
| webmaster@1 | 89 | 
| webmaster@1 | 90       </div><!-- main --> | 
| webmaster@1 | 91     </td> | 
| webmaster@1 | 92     <?php if ($right != ""): ?> | 
| webmaster@1 | 93     <td id="sidebar-right"> | 
| webmaster@1 | 94       <?php print $right ?> | 
| webmaster@1 | 95     </td> | 
| webmaster@1 | 96     <?php endif; ?> | 
| webmaster@1 | 97   </tr> | 
| webmaster@1 | 98 </table> | 
| webmaster@1 | 99 | 
| webmaster@1 | 100 <table id="footer-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%"> | 
| webmaster@1 | 101   <tr> | 
| webmaster@1 | 102     <td align="center" valign="middle"> | 
| webmaster@1 | 103     <?php if (isset($primary_links)) : ?> | 
| webmaster@1 | 104       <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?> | 
| webmaster@1 | 105     <?php endif; ?> | 
| webmaster@1 | 106     <?php if (isset($secondary_links)) : ?> | 
| webmaster@1 | 107       <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?> | 
| webmaster@1 | 108     <?php endif; ?> | 
| webmaster@1 | 109     </td> | 
| webmaster@1 | 110   </tr> | 
| webmaster@1 | 111 </table> | 
| webmaster@1 | 112 | 
| webmaster@1 | 113 <?php if ($footer_message || $footer) : ?> | 
| webmaster@1 | 114 <div id="footer-message"> | 
| webmaster@1 | 115     <p><?php print $footer_message . $footer;?></p> | 
| webmaster@1 | 116 </div> | 
| webmaster@1 | 117 <?php endif; ?> | 
| webmaster@1 | 118 <?php print $closure;?> | 
| webmaster@1 | 119 </body> | 
| webmaster@1 | 120 </html> |