page.tpl.wasphp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <head>
  4. <title><?php print $head_title ?></title>
  5. <?php print $head ?>
  6. <?php print $styles ?>
  7. <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
  8. </head>
  9. <body>
  10. <table border="0" cellpadding="0" cellspacing="0" id="header">
  11. <tr>
  12. <td id="logo">
  13. <?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 } ?>
  14. <?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 } ?>
  15. <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
  16. </td>
  17. <td id="menu">
  18. <?php if (isset($secondary_links)) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
  19. <?php if (isset($primary_links)) { ?><div id="primary"><?php print theme('links', $primary_links) ?></div><?php } ?>
  20. <?php print $search_box ?>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td colspan="2"><div><?php print $header ?></div></td>
  25. </tr>
  26. </table>
  27. <table border="0" cellpadding="0" cellspacing="0" id="content">
  28. <tr>
  29. <?php if ($sidebar_left) { ?><td id="sidebar-left">
  30. <?php print $sidebar_left ?>
  31. </td><?php } ?>
  32. <td valign="top">
  33. <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
  34. <div id="main">
  35. <?php print $breadcrumb ?>
  36. <h1 class="title"><?php print $title ?></h1>
  37. <div class="tabs"><?php print $tabs ?></div>
  38. <?php print $help ?>
  39. <?php print $messages ?>
  40. <?php print $content; ?>
  41. </div>
  42. </td>
  43. <?php if ($sidebar_right) { ?><td id="sidebar-right">
  44. <?php print $sidebar_right ?>
  45. </td><?php } ?>
  46. </tr>
  47. </table>
  48. <div id="footer">
  49. <?php print $footer_message ?>
  50. </div>
  51. <?php print $closure ?>
  52. </body>
  53. </html>