page.tpl.php

  1. 7.x drupal-7.x/modules/system/page.tpl.php
  2. 7.x drupal-7.x/themes/seven/page.tpl.php
  3. 7.x drupal-7.x/themes/garland/page.tpl.php
  4. 7.x drupal-7.x/themes/bartik/templates/page.tpl.php
  5. 7.x drupal-7.x/modules/block/tests/themes/block_test_theme/page.tpl.php
  6. 6.x drupal-6.x/modules/system/page.tpl.php
  7. 6.x drupal-6.x/themes/bluemarine/page.tpl.php
  8. 6.x drupal-6.x/themes/pushbutton/page.tpl.php
  9. 6.x drupal-6.x/themes/garland/page.tpl.php
4 theme calls to page.tpl.php
drupal_access_denied in drupal-6.x/includes/common.inc
Generates a 403 error if the request is not allowed.
drupal_not_found in drupal-6.x/includes/common.inc
Generates a 404 error if the request can not be handled.
index.php in drupal-6.x/index.php
The PHP page that serves all page requests on a Drupal installation.
system_batch_page in drupal-6.x/modules/system/system.admin.inc
Default page callback for batches.

File

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