page.tpl.php
- 7.x drupal-7.x/modules/system/page.tpl.php
- 7.x drupal-7.x/themes/seven/page.tpl.php
- 7.x drupal-7.x/themes/garland/page.tpl.php
- 7.x drupal-7.x/themes/bartik/templates/page.tpl.php
- 7.x drupal-7.x/modules/block/tests/themes/block_test_theme/page.tpl.php
- 6.x drupal-6.x/modules/system/page.tpl.php
- 6.x drupal-6.x/themes/bluemarine/page.tpl.php
- 6.x drupal-6.x/themes/pushbutton/page.tpl.php
- 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.phpView source
- <?php
- ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
-
- <head>
- <?php print $head ?>
- <title><?php print $head_title ?></title>
- <?php print $styles ?>
- <?php print $scripts ?>
- <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
- </head>
-
- <body>
-
- <table border="0" cellpadding="0" cellspacing="0" id="header">
- <tr>
- <td id="logo">
- <?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 } ?>
- <?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 } ?>
- <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
- </td>
- <td id="menu">
- <?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?><?php } ?>
- <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
- <?php print $search_box ?>
- </td>
- </tr>
- <tr>
- <td colspan="2"><div><?php print $header ?></div></td>
- </tr>
- </table>
-
- <table border="0" cellpadding="0" cellspacing="0" id="content">
- <tr>
- <?php if ($left) { ?><td id="sidebar-left">
- <?php print $left ?>
- </td><?php } ?>
- <td valign="top">
- <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
- <div id="main">
- <?php print $breadcrumb ?>
- <h1 class="title"><?php print $title ?></h1>
- <div class="tabs"><?php print $tabs ?></div>
- <?php if ($show_messages) { print $messages; } ?>
- <?php print $help ?>
- <?php print $content; ?>
- <?php print $feed_icons; ?>
- </div>
- </td>
- <?php if ($right) { ?><td id="sidebar-right">
- <?php print $right ?>
- </td><?php } ?>
- </tr>
- </table>
-
- <div id="footer">
- <?php print $footer_message ?>
- <?php print $footer ?>
- </div>
- <?php print $closure ?>
- </body>
- </html>
-